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 |
---|---|---|---|
27 | 2024-11-26 20:10:53 | 39.54 | 96.2% |
14 | 2024-11-05 22:19:12 | 39.87 | 96.2% |