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 |
---|---|---|---|
22 | 2023-07-21 17:47:57 | 50.75 | 95.5% |
8 | 2023-07-20 14:04:42 | 43.67 | 93.1% |
4 | 2023-07-20 13:57:59 | 42.93 | 92.4% |