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 |
---|---|---|---|
13 | 2024-10-14 13:31:39 | 31.08 | 92.2% |
1 | 2024-08-09 13:29:48 | 32.11 | 94% |