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 |
|---|---|---|---|
| 101 | 2025-06-13 22:40:26 | 27.04 | 94% |
| 73 | 2025-03-15 18:38:18 | 34.34 | 94.8% |
| 39 | 2023-10-07 17:58:49 | 29.32 | 93.9% |
| 27 | 2023-06-29 07:41:02 | 27.02 | 93.9% |
| 20 | 2023-06-05 08:03:47 | 28.06 | 94.8% |
| 13 | 2023-06-05 07:47:11 | 29.27 | 95.6% |