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 |
---|---|---|---|
56 | 2023-11-06 13:22:53 | 40.27 | 98% |
41 | 2023-10-19 10:36:14 | 29.32 | 97.2% |