Web Technologies
37.4K+ articles
DSA
22.8K+ articles
Python
21.3K+ articles
Experiences
16.6K+ articles
Interview Experiences
14.2K+ articles
JavaScript
12.2K+ articles
Misc
8.8K+ articles
JavaScript-Questions
2.1K+ articles
javascript-basics
166+ articles
javascript-object
157+ articles
Static methods are functions that are defined on a class but are not accessible through instances of the class. Instead, they are called directly on the class itself. Thes...
read more
JavaScript
Web Technologies
javascript-basics
javascript-oop
A constructor in JavaScript is a special function used to create and initialize objects. It sets up object properties and is typically invoked using the new keyword. Const...
read more
JavaScript
Web Technologies
javascript-object
javascript-oop
JavaScript Composition: Composition means to Compose. Everything in JavaScript is treated as an object even functions in JavaScript are treated as a high-class object. Suc...
read more
Technical Scripter
JavaScript
Web Technologies
Technical Scripter 2020
javascript-object
javascript-oop
In this article, we will understand exactly what the new keyword is, and why we use the new keyword, and how we can use the new keyword.The new keyword in JavaScript: The ...
read more
JavaScript
Web Technologies
Picked
javascript-oop
JavaScript-Questions
In this article, we learn how to call the constructor of a parent class. Before the beginning of this article, we should have a basic knowledge of javascript and some basi...
read more
JavaScript
Web Technologies
Picked
javascript-object
javascript-oop
JavaScript-Questions
A Class in programming is the blueprint or template for creating an object, and each object represents a distinguishable real-world entity. In other words, also we may say...
read more
JavaScript
Web Technologies
Picked
javascript-oop
ES6
JavaScript-Questions
Classes: These are almost similar to functions, except they use a class keyword instead of a function keyword. Another important difference between functions and classes i...
read more
JavaScript
Web Technologies
Picked
javascript-oop
JavaScript-Questions
Here, we will discuss inheriting a constructor function in JavaScript. Constructor functions define the of the properties an object will contain. Using the const...
read more
JavaScript
Web Technologies
Picked
javascript-object
javascript-oop
JavaScript-Questions
CoffeeScript is an object-oriented programming language. Classes make large code readable, and easy to maintainable. Objects are instances of a class, a real-world entity ...
read more
JavaScript
Web Technologies
javascript-oop
JavaScript-Questions
Let's first understand what closures are in Javascript.Closures: A function along with a reference to the outer environment together forms a closure. In other words, we ca...
read more
JavaScript
Web Technologies
javascript-oop
JavaScript-Questions
Sub-class: A subclass is a class that is derived from the properties and methods of some other class known as the Parent class for that subclass. A subclass allows us to c...
read more
JavaScript
Web Technologies
Picked
Geeks Premier League
Geeks-Premier-League-2022
javascript-oop
JavaScript-Questions
Polymorphism is a core concept in object-oriented programming (OOP) that allows objects to be treated as instances of their parent class, but with the ability to take many...
read more
JavaScript
Web Technologies
javascript-oop
JavaScript-Questions
Encapsulation is a fundamental concept in object-oriented programming that refers to the practice of hiding the internal details of an object and exposing only the necessa...
read more
JavaScript
Web Technologies
javascript-oop
JavaScript-Questions
Inheritance is a fundamental concept in object-oriented programming (OOP) that allows one class or object to derive properties and behaviours from another. In JavaScript, ...
read more
JavaScript
Web Technologies
javascript-oop
In JavaScript, Abstraction can be defined as the concept of hiding the inner complex workings of an object and exposing only the essential features to the user. Hiding Com...
read more
JavaScript
Web Technologies
javascript-oop
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our
Cookie Policy
&
Privacy Policy
Got It !