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 |
---|---|---|---|
95 | 2024-01-17 02:57:37 | 79.44 | 93% |
53 | 2023-08-09 06:55:34 | 83.07 | 96.7% |
51 | 2023-08-09 06:53:20 | 68.69 | 94.6% |