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 |
---|---|---|---|
33 | 2022-09-06 05:43:14 | 35.58 | 95% |
28 | 2022-09-06 05:31:52 | 33.87 | 97% |
26 | 2022-08-26 11:39:11 | 36.46 | 97% |
21 | 2022-08-23 06:00:47 | 35.64 | 97% |