View Pit Stop page for race #110 by arc_sec — Ghost race
View profile for Vielle (arc_sec)
Official speed | 103.33 wpm (32.52 seconds elapsed during race) |
---|---|
Race Start | August 14, 2019 4:18:20pm UTC |
Race Finish | August 14, 2019 4:18:53pm UTC |
Outcome | Win (1 of 2) |
Opponents |
2. lesirh (75.22 wpm) |
Accuracy | 97.0% |
Points | 79.22 |
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.'; } } |