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 |
---|---|---|---|
4 | 2023-10-23 14:59:47 | 37.18 | 93.5% |
1 | 2023-08-17 23:06:51 | 35.29 | 91.3% |