About Javascript Scope

Example 1

function Vehicle(color){
    this.color = color;
}
Vehicle("blue");
alert(color) //blue. 'this' in Vehicle function is golbal scope.