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 |
---|---|---|---|
15 | 2023-08-09 14:07:56 | 48.51 | 98% |
12 | 2023-08-09 14:03:43 | 52.41 | 96.8% |
9 | 2023-08-09 13:59:09 | 47.01 | 97.6% |
3 | 2023-08-09 07:32:40 | 47.73 | 99.3% |