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 |
|---|---|---|---|
| 23 | 2024-11-09 18:46:27 | 49.82 | 94.6% |
| 17 | 2024-08-21 17:21:56 | 49.33 | 94% |