UNPKG
mytrial
Version:
latest (1.2.2)
1.2.2
This is my first module
mytrial
/
Student_Emp_Module
/
student.js
14 lines
(12 loc)
•
262 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;