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 |
|---|---|---|---|
| 158 | 2025-01-23 18:40:11 | 37.20 | 94.9% |
| 92 | 2024-12-30 05:41:06 | 32.55 | 94.3% |
| 63 | 2024-12-24 14:16:19 | 27.84 | 93.1% |
| 62 | 2024-11-23 12:03:44 | 33.70 | 95.1% |
| 61 | 2024-11-23 12:01:48 | 29.45 | 93.5% |
| 52 | 2024-11-18 14:34:36 | 31.41 | 95.2% |