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 |
|---|---|---|---|
| 18 | 2025-01-12 23:58:42 | 40.66 | 94.2% |
| 16 | 2025-01-10 17:59:14 | 49.37 | 95.4% |
| 9 | 2025-01-08 02:39:55 | 41.81 | 94.5% |
| 3 | 2025-01-03 01:12:23 | 36.68 | 96.7% |