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 | 2022-12-12 17:44:27 | 22.76 | 92% |
30 | 2022-12-12 00:38:11 | 18.50 | 92% |
22 | 2022-12-05 14:11:12 | 23.23 | 93% |
17 | 2022-11-30 16:48:28 | 22.23 | 92% |
1 | 2022-11-30 13:01:27 | 23.04 | 92% |