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 |
---|---|---|---|
51 | 2021-11-30 19:57:39 | 52.17 | 94% |
44 | 2021-11-30 19:47:45 | 61.95 | 97% |
18 | 2021-10-19 15:01:51 | 57.06 | 96% |
10 | 2021-09-22 19:12:43 | 52.81 | 95% |