Tag Archives: oop

Object Oriented JavaScript

Introduction * JavaScript uses class-less, prototype-oriented, or instance-based programming. * JavaScript is case sensitive. Variables * Examples: // Declare variable var v1; var V2 = 1; var v3, v4 = ‘Hello’, V5; Variable Scope * JavaScript variables are defined in … Continue reading

Posted in JavaScript | Tagged , | Leave a comment