#javascript
Read more stories on Hashnode
Articles with this tag
The some() method in JS is somewhat similar to every() method in terms of arguments that it has and the type of value it returns (boolean), but its...
The every() method in JS checks whether all of the elements of an array meet the condition that is passed inside the callback of every() function....
Static methods in a class is defined as the functions or methods that can be used without making any object of the class. You can also use method...
Classes are defined as the prototype or blueprint which are used to create the objects. Classes have certain methods are variables which are made...
Object is an entity which has key-value pair or which has some properties and methods. Object Literal is a list of zero or more pairs of property key...