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 |
---|---|---|---|
27 | 2021-07-01 21:32:58 | 64.35 | 96% |
17 | 2021-06-29 23:46:58 | 61.68 | 97% |
8 | 2021-06-22 15:31:29 | 61.81 | 97% |