View Pit Stop page for race #440 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 78.88 wpm (45.79 seconds elapsed during race) |
---|---|
Race Start | July 17, 2021 12:46:45pm UTC |
Race Finish | July 17, 2021 12:47:31pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 99.0% |
Points | 60.47 |
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.'; } } |