View Pit Stop page for race #82 by sidd_ — Ghost race
Official speed | 127.96 wpm (26.26 seconds elapsed during race) |
---|---|
Race Start | January 28, 2019 5:47:10am UTC |
Race Finish | January 28, 2019 5:47:36am UTC |
Outcome | Win (1 of 3) |
Opponents |
2. type4harambe (68.15 wpm) 3. foggyy (63.02 wpm) |
Accuracy | 100.0% |
Points | 98.10 |
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.'; } } |