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 |
---|---|---|---|
56 | 2025-07-01 13:02:00 | 36.42 | 95% |
53 | 2025-01-05 08:18:43 | 32.31 | 93.4% |
41 | 2023-09-20 08:07:48 | 29.04 | 93.8% |
8 | 2023-09-08 17:06:22 | 25.62 | 92.8% |