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 |
---|---|---|---|
38 | 2023-07-14 07:52:23 | 25.29 | 94.3% |
37 | 2023-07-14 07:49:37 | 24.12 | 92.1% |
3 | 2023-07-03 05:47:06 | 20.91 | 94% |