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-12-11 06:14:27 | 54.35 | 98.3% |
21 | 2024-12-11 06:05:18 | 51.71 | 95.6% |
17 | 2024-12-11 05:58:30 | 43.04 | 94.9% |