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 |
---|---|---|---|
12 | 2025-03-28 07:30:34 | 38.94 | 93.1% |
5 | 2025-01-03 04:41:44 | 19.31 | 93.3% |