View Pit Stop page for race #33 by imanranjbar — Ghost race
View profile for Iman Ranjbar (imanranjbar)
Official speed | 39.92 wpm (90.48 seconds elapsed during race) |
---|---|
Race Start | April 21, 2023 9:46:16am UTC |
Race Finish | April 21, 2023 9:47:46am UTC |
Outcome | Win (1 of 3) |
Accuracy | 96.0% |
Points | 30.61 |
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.'; } } |