View Pit Stop page for race #5 by code_vansh — Ghost race
View profile for Devansh Karia (code_vansh)
Official speed | 30.52 wpm (118.35 seconds elapsed during race) |
---|---|
Race Start | June 10, 2023 7:16:18pm UTC |
Race Finish | June 10, 2023 7:18:16pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 90.0% |
Points | 23.40 |
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.'; } } |