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 |
|---|---|---|---|
| 39 | 2025-04-10 14:16:47 | 33.66 | 92% |
| 38 | 2025-04-10 14:04:23 | 39.96 | 92% |
| 27 | 2025-04-10 10:27:35 | 40.85 | 93% |
| 17 | 2025-04-07 14:08:09 | 36.07 | 92.4% |
| 5 | 2025-04-03 17:38:20 | 28.76 | 88.5% |
| 4 | 2025-04-03 17:35:48 | 28.69 | 89% |