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 |
---|---|---|---|
52 | 2023-07-04 07:16:44 | 47.83 | 94.5% |
49 | 2023-07-04 07:08:50 | 49.22 | 95.6% |
31 | 2023-07-03 05:04:47 | 46.87 | 93.8% |
23 | 2023-07-03 04:50:24 | 44.76 | 94.2% |
12 | 2023-07-02 04:03:41 | 41.99 | 93.9% |
8 | 2023-07-02 03:56:14 | 42.51 | 93.1% |