collegeadmin1
Version:
My College Application Module
30 lines (29 loc) • 895 B
JavaScript
var student=function () {
this.name="Raj Kumar Singh";
this.course=["PHP","JAVA","MEAN","IONIC","AngularJS",".NET"];
this.city="Indore M.P."
this.contact="987979876"
this.Show=()=>{
console.log("User Name : "+this.name);
console.log("City : "+this.city);
console.log("Contact no. : "+this.contact)
}
this.ShowCourse=()=>{
this.course.map(x=>console.log(x));
}
}
var Employee=function () {
this.empname="Mohan Singh";
this.course=["PHP","JAVA","MEAN","IONIC","AngularJS",".NET"];
this.city="Bhopal M.P."
this.contact="987979876"
this.Show=()=>{
console.log("Employee Name : "+this.empname);
console.log("Employee City : "+this.city);
console.log("Employee Contact no. : "+this.contact)
}
this.ShowCourse=()=>{
this.course.map(x=>console.log(x));
}
}
module.exports={stu:new student(),emp:new Employee(),getMessage:"Wel COme To NODE"};