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 |
|---|---|---|---|
| 74 | 2024-12-09 15:59:14 | 41.86 | 93.7% |
| 56 | 2024-05-26 07:11:04 | 39.10 | 93.6% |
| 29 | 2024-03-31 12:47:28 | 34.19 | 93.1% |
| 18 | 2024-03-11 17:23:01 | 31.71 | 93.5% |
| 13 | 2024-03-03 18:24:30 | 28.60 | 91.8% |