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 |
---|---|---|---|
135 | 2023-09-15 04:24:09 | 53.25 | 91.1% |
133 | 2023-09-15 04:21:09 | 52.74 | 90.8% |
76 | 2023-09-14 08:53:12 | 48.04 | 91% |
23 | 2023-09-12 17:24:26 | 52.38 | 92.5% |
10 | 2023-09-11 16:30:08 | 50.69 | 92.1% |
6 | 2023-09-11 15:52:38 | 50.82 | 93.3% |