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 |
---|---|---|---|
25 | 2021-06-11 19:12:05 | 70.15 | 97% |
14 | 2021-05-04 18:33:56 | 49.24 | 94% |
12 | 2021-05-04 18:27:49 | 48.75 | 95% |