#javascript
Read more stories on Hashnode
Articles with this tag
//Inheritance from ourselves class Thinker { constructor(name, thought) { this.name = name this.thought = thought } ...
In previous blog we discussed what array exactly is and its four methods : 1)push( ) 2)pop( ) 3)shift( ) 4)unshift( ) In this blog we will cover...
What is array? Array is anything which can store more than one value. Array is secondary data type. Array stores the value by index. It will be clear...
Why we use function? The main objective of function is to avoid the repeatation of code. Example: If we have to perform different operations on two...
Variable What is Variable ? a]anything that can store value or some data b] as name indicates it can vary c]it is the location where data is...