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-09-12 05:42:11 | 31.43 | 94.5% |
9 | 2023-09-06 08:42:28 | 19.86 | 91.7% |
2 | 2023-09-06 08:18:49 | 23.72 | 91.8% |