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 |
---|---|---|---|
33 | 2024-03-27 04:33:34 | 35.87 | 94% |
32 | 2024-03-27 04:14:37 | 34.25 | 93.4% |
31 | 2024-03-27 02:46:15 | 33.29 | 94.1% |
8 | 2024-02-28 05:24:27 | 25.90 | 90.8% |