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 |
|---|---|---|---|
| 16 | 2024-08-14 13:27:16 | 32.28 | 93.8% |
| 8 | 2024-08-12 22:08:16 | 27.14 | 93.1% |
| 5 | 2024-08-11 23:11:45 | 28.08 | 93.1% |