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 |
---|---|---|---|
29 | 2024-04-27 21:46:05 | 28.93 | 93.7% |
25 | 2024-04-27 21:36:07 | 26.61 | 92.5% |
3 | 2024-04-20 14:25:46 | 23.86 | 90.8% |
2 | 2024-04-20 14:23:08 | 22.86 | 92.3% |