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 |
---|---|---|---|
134 | 2025-01-23 02:17:38 | 32.71 | 94.2% |
133 | 2025-01-23 02:13:37 | 28.59 | 93.6% |
109 | 2024-06-16 10:47:24 | 32.80 | 93.5% |
65 | 2024-05-05 10:14:31 | 27.37 | 93.2% |
58 | 2024-04-30 09:59:24 | 36.59 | 96.1% |
24 | 2024-03-26 05:13:08 | 30.91 | 95.8% |
17 | 2024-03-24 23:06:29 | 31.01 | 92.9% |