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 |
---|---|---|---|
17 | 2023-11-01 14:12:23 | 37.03 | 97% |
2 | 2023-10-31 17:07:40 | 33.70 | 98.3% |