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 |
|---|---|---|---|
| 157 | 2025-05-09 17:50:44 | 41.94 | 93% |
| 141 | 2025-05-09 17:11:51 | 44.27 | 95% |
| 80 | 2025-05-06 17:25:51 | 43.18 | 97% |
| 71 | 2025-05-06 14:21:18 | 45.20 | 96% |
| 68 | 2025-05-06 14:08:45 | 39.27 | 95% |
| 33 | 2025-05-04 02:00:40 | 37.07 | 93% |
| 29 | 2025-05-04 01:52:53 | 35.95 | 95% |