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 |
---|---|---|---|
52 | 2024-09-06 13:16:31 | 43.11 | 93.9% |
41 | 2024-09-05 21:25:11 | 40.62 | 95.9% |
8 | 2024-08-30 20:26:17 | 41.40 | 95.6% |
1 | 2024-08-30 20:11:42 | 40.85 | 95.3% |