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 |
---|---|---|---|
161 | 2019-01-27 23:24:35 | 57.32 | 96% |
146 | 2019-01-27 22:44:02 | 83.49 | 98% |
108 | 2018-11-01 15:46:56 | 71.59 | 97% |
104 | 2018-11-01 15:38:57 | 75.28 | 97% |
89 | 2018-11-01 03:15:03 | 72.37 | 96% |
76 | 2018-11-01 02:51:40 | 73.53 | 97% |
67 | 2018-10-31 23:51:24 | 77.75 | 97% |
63 | 2018-10-31 23:46:01 | 83.92 | 98% |
52 | 2018-10-31 23:29:26 | 68.77 | 95% |
44 | 2018-10-31 23:17:55 | 67.34 | 96% |