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 |
---|---|---|---|
14 | 2023-09-12 12:33:58 | 34.94 | 94.1% |
7 | 2023-06-23 18:31:37 | 33.73 | 93.2% |
1 | 2023-06-12 05:26:46 | 31.80 | 94.5% |