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 |
---|---|---|---|
8 | 2020-09-24 20:25:40 | 42.22 | 94% |
1 | 2020-07-18 02:00:40 | 47.21 | 93% |