View Pit Stop page for race #71 by oschipor — Ghost race
View profile for Ovidiu (oschipor)
Official speed | 28.63 wpm (117.36 seconds elapsed during race) |
---|---|
Race Start | May 17, 2019 2:02:20pm UTC |
Race Finish | May 17, 2019 2:04:17pm UTC |
Outcome | Win (1 of 3) |
Accuracy | 98.0% |
Points | 21.95 |
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.'; } } |