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 |
---|---|---|---|
36 | 2023-08-18 17:01:09 | 27.72 | 90.4% |
23 | 2023-08-15 14:53:31 | 27.75 | 92.1% |
7 | 2023-08-12 15:18:28 | 23.98 | 90% |
2 | 2023-08-11 15:59:17 | 21.86 | 88.7% |