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 |
---|---|---|---|
53 | 2023-08-17 20:56:17 | 67.81 | 96.1% |
44 | 2021-12-25 22:20:54 | 58.28 | 95% |
29 | 2021-12-25 12:55:46 | 56.14 | 95% |
15 | 2021-12-24 13:44:38 | 53.26 | 94% |