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 |
---|---|---|---|
97 | 2023-07-18 17:34:36 | 61.76 | 96.8% |
72 | 2023-07-06 11:10:29 | 53.98 | 93.6% |
17 | 2021-10-07 18:26:52 | 50.93 | 97% |