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 |
---|---|---|---|
40 | 2023-09-15 04:41:23 | 42.25 | 90.1% |
19 | 2023-09-14 13:24:20 | 41.70 | 91.8% |
8 | 2023-09-13 13:49:14 | 41.27 | 91.7% |