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 |
---|---|---|---|
41 | 2022-01-24 19:56:45 | 42.51 | 96% |
29 | 2022-01-24 17:02:33 | 41.63 | 97% |
12 | 2022-01-23 17:57:50 | 39.27 | 96% |