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 |
---|---|---|---|
158 | 2022-07-22 09:27:51 | 64.08 | 98% |
146 | 2021-08-30 23:55:37 | 65.36 | 99% |
139 | 2021-04-05 00:55:53 | 53.67 | 97% |
65 | 2019-03-30 10:22:35 | 57.47 | 98% |