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 |
---|---|---|---|
6 | 2024-11-10 09:17:10 | 57.65 | 94.6% |
1 | 2024-11-08 15:14:07 | 44.56 | 94.6% |