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 |
---|---|---|---|
57 | 2022-07-29 08:07:33 | 70.04 | 97% |
44 | 2022-07-29 07:42:05 | 73.32 | 97% |
21 | 2022-07-09 14:38:38 | 69.13 | 96% |
11 | 2022-07-09 08:18:25 | 76.59 | 98% |
5 | 2022-07-08 11:28:34 | 69.18 | 96% |