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 |
---|---|---|---|
21 | 2025-06-22 23:03:16 | 26.65 | 94% |
19 | 2025-06-22 22:57:38 | 24.42 | 94% |
9 | 2025-06-04 20:12:18 | 22.41 | 94.2% |