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 |
---|---|---|---|
45 | 2023-06-22 18:42:39 | 34.77 | 95.6% |
44 | 2023-06-22 18:30:49 | 29.94 | 94.9% |
33 | 2023-06-20 10:47:18 | 30.32 | 94.7% |
32 | 2023-06-20 10:40:30 | 30.40 | 95% |
11 | 2023-06-17 18:42:44 | 27.21 | 95.3% |
5 | 2023-06-17 15:57:30 | 19.75 | 92.9% |