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 |
---|---|---|---|
38 | 2023-09-26 02:41:55 | 42.80 | 93.4% |
37 | 2023-09-26 02:40:11 | 39.46 | 92.3% |
28 | 2023-09-26 02:20:50 | 36.63 | 93.3% |