oop js is code example
Example 1: oop js is
function Person(name) {
this.name = name;
this.greeting = function() {
alert('Hi! I\'m ' + this.name + '.');
};
}
Example 2: is javascript object oriented
var js = new JavaScript();
js.isObjectOrientated = true;