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 |
---|---|---|---|
12 | 2025-06-10 21:01:48 | 52.50 | 96% |
10 | 2025-06-08 21:06:52 | 47.01 | 94% |
9 | 2025-06-08 21:05:22 | 52.80 | 97% |