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 |
---|---|---|---|
50 | 2025-02-02 05:10:23 | 52.53 | 95.1% |
44 | 2024-05-30 06:18:56 | 53.82 | 95.9% |
30 | 2024-05-14 14:44:39 | 49.70 | 96.5% |