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 |
---|---|---|---|
35 | 2023-12-06 13:18:19 | 38.95 | 93% |
29 | 2023-06-23 13:42:24 | 41.75 | 96.2% |
8 | 2023-06-21 13:11:13 | 35.85 | 93.5% |