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 |
---|---|---|---|
20 | 2023-08-24 02:05:56 | 50.37 | 95.4% |
11 | 2023-08-11 06:12:42 | 51.68 | 95.9% |