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 |
---|---|---|---|
71 | 2024-01-14 15:34:22 | 33.18 | 91.3% |
14 | 2024-01-07 14:06:08 | 35.50 | 90.5% |
12 | 2024-01-07 14:02:11 | 35.22 | 91.2% |
7 | 2024-01-04 09:37:27 | 36.40 | 92.1% |