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 |
|---|---|---|---|
| 39 | 2025-10-26 00:09:05 | 29.69 | 95% |
| 33 | 2025-10-13 01:39:40 | 27.50 | 94% |