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 |
---|---|---|---|
40 | 2023-06-12 14:52:55 | 27.40 | 93% |
31 | 2023-06-10 13:24:52 | 26.64 | 94% |
22 | 2023-06-08 12:00:45 | 26.51 | 97% |
6 | 2023-06-02 13:43:10 | 24.38 | 93% |
5 | 2023-06-02 13:39:53 | 25.67 | 95% |