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 |
---|---|---|---|
20 | 2023-06-14 14:40:42 | 55.79 | 96.3% |
12 | 2023-06-14 14:27:47 | 51.19 | 95.1% |
7 | 2023-06-14 14:19:52 | 47.36 | 93% |