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 |
---|---|---|---|
38 | 2023-12-31 02:33:17 | 26.18 | 93.2% |
24 | 2023-12-26 02:55:16 | 26.86 | 93.1% |
11 | 2023-12-25 10:45:56 | 26.00 | 94.5% |