UNPKG

mytrial

Version:

This is my first module

14 lines (12 loc) 262 B
var Student=function(){ this.name="Rohit"; this.r_no=1001; this.SetData=function(){ this.name=name; this.r_no=r_no; } this.ShowData=function(){ console.log(this.name+""+this.r_no); } } module.export=student;