View Pit Stop page for race #22 by avivsq12 — Ghost race
View profile for avivsq12 (avivsq12)
Official speed | 52.51 wpm (68.79 seconds elapsed during race) |
---|---|
Race Start | July 1, 2023 7:33:37pm UTC |
Race Finish | July 1, 2023 7:34:45pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 97.0% |
Points | 40.26 |
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.'; } } |