some() in JavaScriptThe 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 functionality is a bit different. The some() method checks whether any single element of an array meet...Jul 20, 2022·1 min read
Inheritance in JavaScriptYou have got some of the qualities inside you from your parents and they have got some from theirs, Inheritance is exact same concept. Inheritance allows a programmer to make a class that can have all the methods of its parent class and add even more...May 7, 2022·2 min read