Tag: JavaScript Datatypes

  • Datatypes in Javascript | Javascript Tutorial

    JavaScript variables can hold many data types: numbers, strings, objects and more. In programming, data types is an important concept. To be able to operate on variables, it is important to know something about the type. Link to my Websites :- Suraj Bahadur github : https://surajbahadur.me/ Suraj Bahadur Website : https://surajbahadur.tech Suraj Bahadur Facebook –…

  • JavaScript Tutorial – what is prototype object

    Object keeps different properties and some may be methods also. Every object is associated with another prototype object. Object inherits all properties from the prototype object. {} empty object inherits properties from it’s prototype object Object.prototype. [] empty array inherits properties from it’s prototype object Array.prototype. Object.getPrototypeOf(o) returns prototype object of object o. new Object…