myclg
Version:
My College Module
21 lines • 606 B
JavaScript
var user=function (name,city,contact) {
this.username=name;
this.city=city;
this.contact=contact;
this.ShowUser=function () {
console.log("User Name : "+this.username)
console.log("User City : "+this.city)
console.log("User Contact : "+this.contact)
}
}
var Student=function (name,city,contact) {
this.username=name;
this.city=city;
this.contact=contact;
this.ShowStudent=function () {
console.log("Student Name : "+this.username)
console.log("Student City : "+this.city)
console.log("Student Contact : "+this.contact)
}
}
module.exports={user:user,stu:Student};