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-06-15 03:47:04 | 32.35 | 92% |
8 | 2025-06-15 03:32:14 | 31.81 | 93% |
4 | 2025-06-15 03:26:13 | 32.74 | 94% |