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 | 2022-06-09 01:14:32 | 85.99 | 98% |
118 | 2022-04-25 04:15:29 | 73.27 | 95% |
111 | 2022-04-16 07:33:20 | 75.76 | 95% |
73 | 2022-04-06 07:23:31 | 71.38 | 94% |
56 | 2022-03-28 10:01:16 | 73.42 | 95% |