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 |
|---|---|---|---|
| 29 | 2024-02-25 17:17:19 | 41.72 | 95.6% |
| 27 | 2024-02-25 06:47:10 | 32.56 | 93.5% |
| 14 | 2024-02-24 21:22:11 | 34.81 | 95.7% |