View Pit Stop page for race #22 by karanjain18 — Ghost race
View profile for Karan Jain (karanjain18)
Official speed | 45.08 wpm (74.53 seconds elapsed during race) |
---|---|
Race Start | September 29, 2019 4:14:47pm UTC |
Race Finish | September 29, 2019 4:16:02pm UTC |
Outcome | No win (2 of 2) |
Opponents |
1. mairzydoats_mason (56.43 wpm) |
Accuracy | 95.0% |
Points | 34.56 |
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.'; } } |