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 | 2024-05-15 12:51:18 | 33.25 | 94.4% |
21 | 2024-05-10 11:16:30 | 27.81 | 92.9% |
14 | 2024-05-09 07:41:08 | 24.70 | 92.3% |
6 | 2024-05-05 13:26:40 | 22.44 | 92.8% |