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 | 2024-12-22 07:42:06 | 15.34 | 90.8% |
38 | 2024-12-22 07:28:48 | 25.96 | 93.9% |