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 |
|---|---|---|---|
| 105 | 2025-01-26 18:26:56 | 26.41 | 91.4% |
| 91 | 2025-01-17 18:22:24 | 20.54 | 91.7% |
| 64 | 2024-05-03 17:35:25 | 23.53 | 94.2% |
| 63 | 2024-05-03 17:32:45 | 23.61 | 91.9% |
| 58 | 2024-05-03 17:18:34 | 23.45 | 92.8% |
| 51 | 2024-04-26 13:31:10 | 19.42 | 89.3% |
| 33 | 2024-04-11 13:32:21 | 17.52 | 91.5% |
| 16 | 2024-01-06 10:46:57 | 22.15 | 92.9% |
| 15 | 2024-01-06 10:44:03 | 22.13 | 94.2% |
| 11 | 2024-01-06 10:22:20 | 13.50 | 93.7% |