function calculateArea(width, height) { try { var area = width * height; if (!isNaN(area)) { return area; } else { throw new Error('calculateArea() received invalid number'); } } catch(e) { console.log(e.name + ' ' + e.message); return 'We were unable to calculate the area.'; } }
Game | Time | WPM | Accuracy |
---|---|---|---|
102 | 2023-07-27 03:02:05 | 26.38 | 94.7% |
101 | 2023-07-27 02:58:39 | 27.27 | 94.8% |
89 | 2023-07-22 04:07:44 | 29.70 | 92.7% |
87 | 2023-07-22 03:52:31 | 24.30 | 91.1% |
86 | 2023-07-20 10:19:24 | 27.80 | 93.1% |
25 | 2023-07-14 03:08:23 | 26.02 | 91.2% |