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 |
---|---|---|---|
91 | 2025-07-18 10:02:08 | 62.45 | 96% |
79 | 2025-07-18 09:46:18 | 74.62 | 98% |
58 | 2025-07-03 11:19:24 | 66.96 | 97% |
40 | 2025-07-01 06:42:33 | 56.73 | 95% |
10 | 2025-06-21 09:15:45 | 59.11 | 97% |
5 | 2025-06-21 09:02:59 | 59.24 | 96% |