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 |
---|---|---|---|
66 | 2021-07-06 12:06:18 | 59.73 | 98% |
56 | 2021-07-05 13:28:17 | 53.10 | 96% |
36 | 2021-07-04 08:14:32 | 55.78 | 98% |
32 | 2021-07-01 11:37:01 | 56.86 | 98% |
17 | 2021-06-30 16:02:15 | 56.12 | 97% |
15 | 2021-06-30 15:58:16 | 59.36 | 98% |
10 | 2021-06-29 15:03:13 | 47.14 | 97% |
5 | 2021-06-17 14:44:32 | 47.27 | 97% |