View Pit Stop page for race #326 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 63.21 wpm (53.16 seconds elapsed during race) |
---|---|
Race Start | May 9, 2020 6:20:03pm UTC |
Race Finish | May 9, 2020 6:20:56pm UTC |
Outcome | No win (2 of 3) |
Accuracy | 96.0% |
Points | 48.46 |
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.'; } } |