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 |
---|---|---|---|
16 | 2023-07-02 14:30:39 | 33.66 | 94.3% |
3 | 2023-07-01 19:17:19 | 31.73 | 91.9% |