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 |
---|---|---|---|
163 | 2025-01-26 11:08:29 | 66.93 | 97.4% |
139 | 2025-01-19 11:44:50 | 61.62 | 96.1% |
117 | 2025-01-10 10:50:34 | 72.09 | 98.6% |
116 | 2025-01-09 10:18:34 | 63.77 | 96.6% |
100 | 2024-12-30 15:12:52 | 60.44 | 96.8% |
97 | 2024-12-30 15:08:46 | 56.31 | 96% |
47 | 2024-12-20 14:04:29 | 67.12 | 97.6% |
17 | 2024-12-10 15:30:47 | 54.42 | 96% |