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 |
---|---|---|---|
34 | 2025-03-04 22:39:50 | 39.70 | 97.1% |
7 | 2025-02-23 00:27:51 | 41.83 | 97.6% |
3 | 2025-02-22 23:44:47 | 35.68 | 96.2% |