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 |
---|---|---|---|
42 | 2024-07-31 21:00:54 | 65.83 | 97.3% |
37 | 2024-07-22 16:29:10 | 68.66 | 95.7% |
30 | 2024-07-21 01:03:18 | 70.09 | 97.8% |
13 | 2024-07-05 16:29:55 | 62.66 | 96.4% |