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 |
---|---|---|---|
130 | 2019-05-20 12:23:17 | 30.78 | 99% |
112 | 2019-05-19 16:31:56 | 28.45 | 97% |
110 | 2019-05-19 16:28:02 | 26.63 | 96% |
107 | 2019-05-19 16:13:15 | 29.18 | 97% |
106 | 2019-05-19 16:10:53 | 29.08 | 97% |
77 | 2019-05-17 14:21:01 | 26.32 | 98% |
71 | 2019-05-17 14:04:17 | 28.63 | 98% |
39 | 2019-05-17 08:02:40 | 26.95 | 98% |
35 | 2019-05-16 14:46:25 | 28.60 | 99% |