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 |
|---|---|---|---|
| 17 | 2025-06-11 08:37:22 | 45.28 | 95% |
| 15 | 2025-06-11 08:35:06 | 38.99 | 94% |
| 11 | 2025-06-09 06:25:05 | 37.20 | 95% |