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 |
---|---|---|---|
6 | 2024-08-27 15:01:16 | 29.29 | 93.8% |
3 | 2024-08-26 06:36:30 | 28.86 | 93.4% |
2 | 2024-08-26 06:34:14 | 27.88 | 93.2% |