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 |
---|---|---|---|
16 | 2025-01-12 23:49:37 | 27.32 | 94.5% |
12 | 2025-01-12 22:20:50 | 26.12 | 94.2% |