View Pit Stop page for race #1 by givemefox — Ghost race
View profile for GiveMeFox (givemefox)
Official speed | 31.85 wpm (113.41 seconds elapsed during race) |
---|---|
Race Start | May 29, 2023 8:13:31am UTC |
Race Finish | May 29, 2023 8:15:24am UTC |
Outcome | No win (3 of 3) |
Accuracy | 89.0% |
Points | 24.42 |
Text | #10015 (Length: 301 characters) 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.'; } } |