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 |
|---|---|---|---|
| 13 | 2024-07-01 07:04:42 | 37.19 | 92.7% |
| 11 | 2024-07-01 05:00:07 | 37.14 | 94.5% |