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 |
---|---|---|---|
65 | 2019-08-22 13:06:03 | 60.39 | 96% |
59 | 2019-08-10 20:37:17 | 67.39 | 98% |
50 | 2019-07-29 12:22:04 | 61.61 | 95% |
4 | 2018-11-01 15:47:31 | 41.14 | 95% |