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 |
---|---|---|---|
15 | 2023-11-13 10:15:33 | 24.87 | 91.5% |
4 | 2023-09-21 13:56:47 | 29.30 | 95.3% |
2 | 2023-09-21 13:52:38 | 25.96 | 94.3% |