0
Can we consider this as a class definition?
Like in C++ where you create a class and instantiate objects off of it
2 Answers
+ 14
function clas(a) {
this.a = a;
//....
}
new clas();....
0
No, its a class reference.....
Like in C++ where you create a class and instantiate objects off of it