View Pit Stop page for race #330 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 60.99 wpm (55.09 seconds elapsed during race) |
---|---|
Race Start | May 17, 2020 3:19:57am UTC |
Race Finish | May 17, 2020 3:20:52am UTC |
Outcome | No win (3 of 3) |
Accuracy | 96.0% |
Points | 46.76 |
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.'; } } |