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 |
|---|---|---|---|
| 8 | 2024-03-25 01:17:53 | 28.60 | 95.4% |
| 6 | 2024-03-25 01:13:48 | 27.22 | 94% |
| 4 | 2024-03-25 01:09:21 | 24.78 | 91.9% |
| 2 | 2024-03-25 01:02:58 | 24.20 | 93.9% |