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 |
---|---|---|---|
6 | 2020-12-06 13:13:40 | 15.45 | 89% |
5 | 2020-12-06 13:09:33 | 15.75 | 91% |
4 | 2020-12-06 12:41:15 | 15.93 | 90% |