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 |
---|---|---|---|
66 | 2023-09-14 14:33:05 | 48.88 | 96% |
25 | 2023-09-14 13:05:25 | 41.40 | 96.8% |