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 |
---|---|---|---|
125 | 2019-11-27 21:08:12 | 96.02 | 97% |
110 | 2019-08-14 16:18:53 | 103.33 | 97% |
57 | 2019-08-08 23:26:13 | 106.71 | 99% |
42 | 2019-08-08 03:57:17 | 95.19 | 98% |
38 | 2019-08-08 03:49:45 | 93.99 | 97% |
17 | 2019-08-08 03:14:28 | 87.71 | 97% |