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 |
---|---|---|---|
47 | 2025-02-12 20:36:48 | 25.01 | 94.6% |
40 | 2025-02-02 20:45:53 | 25.90 | 94.8% |
37 | 2025-01-30 03:56:19 | 24.54 | 94% |