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-03-04 03:45:59 | 60.09 | 97.2% |
| 23 | 2024-03-04 00:16:18 | 52.79 | 96.6% |
| 20 | 2024-03-04 00:12:51 | 57.44 | 97.1% |