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 |
---|---|---|---|
30 | 2024-08-24 01:41:36 | 26.42 | 94.4% |
26 | 2024-08-24 01:08:12 | 28.25 | 96.1% |
11 | 2024-08-22 14:41:19 | 28.75 | 95.3% |