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 |
---|---|---|---|
199 | 2024-11-27 08:13:57 | 109.79 | 97.6% |
133 | 2019-02-16 05:40:14 | 127.19 | 99% |
91 | 2019-02-01 01:12:08 | 123.19 | 98% |
89 | 2019-02-01 01:09:59 | 115.68 | 98% |
86 | 2019-02-01 01:05:37 | 123.15 | 98% |
82 | 2019-01-28 05:47:36 | 127.96 | 100% |
64 | 2019-01-27 23:24:01 | 133.59 | 100% |
40 | 2019-01-27 22:43:50 | 116.79 | 99% |