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 |
---|---|---|---|
45 | 2023-08-12 04:09:36 | 36.51 | 92% |
42 | 2023-08-12 04:01:42 | 30.20 | 92.7% |
19 | 2023-08-11 20:20:24 | 37.12 | 92.7% |