Articles tagged: Classes
Found 10 documents
- Learn/Drafts/Python/Quickly_Learn_Object_Oriented_Programming This tutorial explains how to get started with object-oriented programming, using code examples ...
- Mozilla/Tech/XPCOM/Reference/Glue_classes These "glue" classes are provided to make it easier to use XPCOM from C++ code.
- Web/JavaScript/Reference/Classes JavaScript classes introduced in ECMAScript 6 are syntactical sugar over JavaScript's existing ...
- Web/JavaScript/Reference/Classes/constructor The constructor method is a special method for creating and initializing an object created with ...
- Web/JavaScript/Reference/Classes/extends The extends keyword is used in a class declarations or class expressions to create a class with ...
- Web/JavaScript/Reference/Classes/static The static keyword defines a static method for a class.
- Web/JavaScript/Reference/Operators/class The class expression is one way to define a class in ECMAScript 2015 (ES6). Similar to function ...
- Web/JavaScript/Reference/Operators/new.target The new.target property lets you detect whether a function or constructor was called using the ...
- Web/JavaScript/Reference/Operators/super The super keyword is used to call functions on an object's parent.
- Web/JavaScript/Reference/Statements/class The class declaration creates a new class with a given name using prototype-based inheritance.