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 |
---|---|---|---|
88 | 2025-06-22 23:03:16 | 26.59 | 92% |
86 | 2025-06-22 22:57:02 | 32.94 | 96% |
61 | 2025-06-04 20:11:40 | 30.01 | 92% |
18 | 2025-05-16 01:33:45 | 23.33 | 94% |