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 |
---|---|---|---|
132 | 2021-12-07 12:22:20 | 64.92 | 93% |
131 | 2021-12-07 12:20:58 | 64.27 | 95% |
87 | 2021-11-04 08:19:28 | 57.25 | 94% |
83 | 2021-11-04 08:12:00 | 63.97 | 95% |
52 | 2021-11-04 04:34:02 | 53.79 | 94% |
33 | 2021-11-03 17:25:24 | 58.65 | 93% |