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 |
---|---|---|---|
132 | 2023-09-07 10:33:44 | 45.18 | 96.5% |
117 | 2023-09-05 12:48:26 | 46.40 | 96.7% |
91 | 2023-08-31 11:05:35 | 48.95 | 97.3% |