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 |
---|---|---|---|
27 | 2023-09-11 10:46:15 | 50.29 | 98.3% |
22 | 2023-07-01 19:34:45 | 52.51 | 96.8% |
14 | 2023-07-01 19:14:45 | 49.78 | 96.2% |
3 | 2023-06-27 03:27:15 | 49.68 | 96.8% |