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 |
---|---|---|---|
30 | 2023-12-06 10:10:46 | 22.07 | 93.1% |
23 | 2023-11-28 04:37:49 | 25.14 | 94.4% |
18 | 2023-11-22 00:20:56 | 22.19 | 94.8% |