View Pit Stop page for race #17 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 43.83 wpm (76.66 seconds elapsed during race) |
---|---|
Race Start | September 29, 2019 11:23:12am UTC |
Race Finish | September 29, 2019 11:24:29am UTC |
Outcome | No win (3 of 3) |
Accuracy | 96.0% |
Points | 33.60 |
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.'; } } |