Category: javascript

Math Object Javascript

To make mathematical calculation easier on numbers, javascript provides Math object. Its all properties and methods are static means it…

Assignment Operator

Variable holds value, and this value is assigned to a variable using assignment operator (= equals to). Assignment operator assigns…

Array javascript

Array is a set of similar values stored in a contiguous memory location. Array values are accessed by its index.…

Object – javascript

Object in javascript is a non-primitive data type, used to hold multiple name-values as properties. Object property is a name:value…

Symbols javascript

Symbol is a primitive data type, introduced in ES6 version, which creates an immutable and unique symbol. It is used…