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 |
---|---|---|---|
56 | 2025-06-22 23:03:04 | 29.28 | 94% |
54 | 2025-06-22 22:57:16 | 29.14 | 94% |
42 | 2025-06-21 01:14:11 | 29.94 | 97% |
26 | 2025-06-04 20:11:49 | 27.84 | 96.4% |