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 |
---|---|---|---|
62 | 2023-07-09 10:09:32 | 33.35 | 93.1% |
60 | 2023-07-08 16:01:15 | 38.29 | 94.3% |
55 | 2023-06-20 04:14:08 | 61.37 | 96.8% |
48 | 2023-06-20 02:29:02 | 60.59 | 96.4% |
32 | 2023-06-18 13:21:49 | 53.76 | 97% |
31 | 2023-06-17 23:13:27 | 51.84 | 94.9% |
18 | 2023-06-17 22:14:29 | 55.49 | 95.3% |