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 |
---|---|---|---|
32 | 2025-05-19 00:07:48 | 23.82 | 92.7% |
10 | 2025-05-18 00:49:40 | 26.50 | 94.9% |