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 |
---|---|---|---|
44 | 2023-11-08 07:23:40 | 66.51 | 97.1% |
38 | 2023-04-08 17:25:28 | 63.63 | 97% |
23 | 2023-03-24 15:53:31 | 65.65 | 98% |
9 | 2023-03-19 14:07:15 | 51.79 | 95% |