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 |
---|---|---|---|
103 | 2020-12-19 05:28:19 | 103.79 | 98% |
101 | 2020-08-11 00:38:14 | 88.41 | 96% |
64 | 2019-08-14 16:19:05 | 75.22 | 93% |
24 | 2019-08-08 23:26:30 | 68.31 | 94% |