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 |
---|---|---|---|
35 | 2023-04-12 16:27:49 | 74.06 | 98% |
34 | 2023-04-12 16:26:38 | 62.14 | 96% |
25 | 2023-04-08 10:00:47 | 62.64 | 95% |
8 | 2023-04-06 09:58:23 | 56.07 | 95% |