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 |
---|---|---|---|
61 | 2022-09-13 23:20:17 | 118.60 | 99% |
44 | 2021-08-01 19:50:05 | 123.51 | 98% |
26 | 2021-05-25 19:53:50 | 95.48 | 97% |
24 | 2021-05-25 19:45:00 | 110.41 | 98% |
13 | 2021-05-25 16:35:40 | 113.91 | 99% |
12 | 2021-05-25 16:35:04 | 106.88 | 97% |