What is a JavaScript Object? if there is a such thing help pls.
What is a JavaScript Object?
Collapse
X
-
just for completion. Javascript does not use the concept of classes. Javascript is a prototype based language (see also here) i.e. it clones existing objects rather than creating new ones.
you can call the function that is used to build the object a class, although it is not a class in the class-ical meaning.Comment
Comment