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 |
---|---|---|---|
49 | 2025-05-04 08:04:25 | 42.20 | 93.2% |
42 | 2025-01-17 09:23:13 | 41.06 | 93.7% |
30 | 2025-01-02 19:05:00 | 43.97 | 94.9% |
18 | 2024-12-28 21:35:22 | 45.68 | 95.6% |
11 | 2024-12-19 23:23:00 | 42.63 | 93.4% |