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 |
---|---|---|---|
113 | 2024-09-29 11:20:23 | 23.53 | 92.8% |
69 | 2024-09-21 03:33:26 | 24.84 | 93.1% |
54 | 2024-09-15 05:07:18 | 21.59 | 92.5% |
36 | 2024-09-13 09:55:34 | 21.38 | 94.8% |
32 | 2024-09-13 01:00:48 | 20.61 | 93.7% |