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-02-05 01:17:36 | 64.78 | 96.7% |
1 | 2025-01-29 05:09:33 | 68.23 | 97.1% |