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 |
|---|---|---|---|
| 327 | 2024-05-13 15:33:37 | 31.35 | 94.7% |
| 310 | 2024-05-08 20:57:47 | 31.02 | 94.7% |
| 294 | 2024-05-08 17:33:20 | 30.60 | 95.5% |
| 238 | 2024-04-21 11:42:53 | 32.22 | 95.4% |
| 165 | 2024-03-14 14:40:01 | 30.16 | 95.9% |
| 156 | 2024-03-06 20:26:08 | 28.62 | 95.1% |
| 119 | 2024-02-05 17:42:47 | 25.21 | 94.8% |
| 88 | 2024-01-21 18:51:58 | 27.65 | 95.3% |
| 81 | 2024-01-21 18:35:58 | 28.19 | 96.4% |
| 54 | 2024-01-19 18:44:51 | 19.35 | 94% |
| 16 | 2024-01-07 05:43:49 | 14.52 | 91.4% |
| 11 | 2024-01-07 05:17:03 | 17.21 | 92.9% |
| 4 | 2024-01-07 04:53:21 | 15.20 | 93% |
| 2 | 2024-01-07 04:46:28 | 15.14 | 93.1% |