var student=new function () {
this.name="Raj Kumar";
this.city="Indore M.P.";
this.course="PHP";
this.Show=()=>{
console.log("User name : "+this.name)
console.log("User City : "+this.city)
console.log("User Course : "+this.course)
}
}
module.exports=student;