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 |
---|---|---|---|
28 | 2024-10-02 05:18:47 | 42.03 | 93.7% |
18 | 2024-09-26 06:29:30 | 43.17 | 93% |