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 |
|---|---|---|---|
| 26 | 2024-09-18 16:01:06 | 27.72 | 94.5% |
| 23 | 2024-09-18 02:58:41 | 25.98 | 93.3% |
| 20 | 2024-09-17 06:54:40 | 28.05 | 93.7% |