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 |
---|---|---|---|
11 | 2023-08-17 18:56:37 | 33.23 | 94.9% |
2 | 2023-08-03 18:09:27 | 27.71 | 93.6% |