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 |
---|---|---|---|
67 | 2024-11-07 14:49:18 | 27.10 | 93.3% |
57 | 2024-10-17 10:34:10 | 26.37 | 91.9% |
38 | 2024-04-04 08:24:31 | 21.67 | 92.5% |
22 | 2024-03-24 06:20:13 | 21.26 | 93.9% |
19 | 2024-03-24 06:11:28 | 19.61 | 94.4% |