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 |
|---|---|---|---|
| 41 | 2025-01-20 06:03:23 | 51.27 | 93.4% |
| 9 | 2025-01-20 04:34:32 | 55.46 | 94.9% |
| 4 | 2025-01-20 04:27:08 | 47.39 | 92.1% |