View Pit Stop page for race #17 by arc_sec — Ghost race
View profile for Vielle (arc_sec)
Official speed | 87.71 wpm (38.31 seconds elapsed during race) |
---|---|
Race Start | August 8, 2019 3:13:49am UTC |
Race Finish | August 8, 2019 3:14:28am UTC |
Outcome | Win (1 of 4) |
Opponents |
2. spondulix (79.70 wpm) |
Accuracy | 97.0% |
Points | 67.24 |
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.'; } } |