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 |
---|---|---|---|
53 | 2025-06-30 02:07:34 | 26.45 | 96% |
21 | 2025-06-22 23:03:17 | 26.44 | 94% |
19 | 2025-06-22 22:57:27 | 26.53 | 96% |
8 | 2025-06-21 01:14:47 | 22.77 | 96% |