Constructor Func

by Krishna Ananthi

JavaScript

var Car= function(){
	this.color='green';
} 
var c1= Car();
console.log(c1);