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 |
---|---|---|---|
63 | 2025-02-05 17:16:14 | 44.02 | 92% |
53 | 2025-02-04 17:08:12 | 44.14 | 92.5% |
41 | 2025-02-02 15:32:42 | 36.12 | 91.4% |
29 | 2025-01-28 17:26:07 | 29.20 | 90.4% |
19 | 2025-01-28 16:26:37 | 41.49 | 92.8% |
7 | 2025-01-23 13:37:20 | 34.48 | 91.9% |