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 | 2025-02-10 18:51:59 | 46.97 | 93% |
1 | 2024-11-07 11:35:15 | 27.87 | 91% |