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 |
---|---|---|---|
51 | 2020-12-18 14:37:28 | 65.80 | 98% |
37 | 2020-12-11 01:24:39 | 71.83 | 98% |
32 | 2020-12-08 07:57:08 | 70.20 | 98% |
28 | 2020-12-07 20:15:48 | 73.56 | 98% |
25 | 2020-12-07 20:10:23 | 77.99 | 99% |
24 | 2020-12-07 20:04:17 | 66.20 | 97% |
21 | 2020-12-07 19:57:51 | 53.62 | 97% |
13 | 2020-11-25 20:31:32 | 73.84 | 99% |
10 | 2020-11-23 18:33:45 | 58.99 | 97% |
3 | 2020-11-22 00:33:39 | 53.93 | 95% |