View Pit Stop page for race #6 by yunik_gautam — Ghost race
View profile for Yunik Gautam (yunik_gautam)
Official speed | 48.89 wpm (73.88 seconds elapsed during race) |
---|---|
Race Start | June 27, 2023 6:32:04am UTC |
Race Finish | June 27, 2023 6:33:18am UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 37.48 |
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.'; } } |