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 |
---|---|---|---|
102 | 2023-06-27 08:59:01 | 29.54 | 92.8% |
48 | 2023-06-09 08:45:17 | 31.40 | 93.3% |
39 | 2023-06-08 06:37:46 | 31.09 | 93.6% |
6 | 2023-06-06 08:30:01 | 26.87 | 93.6% |