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 |
|---|---|---|---|
| 54 | 2024-04-22 09:12:31 | 64.99 | 97.1% |
| 16 | 2023-08-04 23:46:18 | 55.15 | 96.1% |
| 11 | 2023-08-02 18:47:23 | 57.54 | 96.9% |