Skip to main content

Instance โ†” Object created through a class or Constructor Function

Methods are copied from class to all Instances

Referencesโ€‹

  1. Instantiation โ†” (process) to create new Object Instance from class

  2. Class โ†” Blueprint to create Object Instance

  3. Array.from() โ†” to return new ArrayInstancefromiterable (or array-like) Object

  4. CC โ†” React class Instance extends React.Component, provides render() Method to return UI, manage state & perform side effects on Lifecycle Methods

  5. app โ†” Express Instance

  6. ChildProcess โ†” Spawned Child Process Instance

  7. EventEmitter โ†” class constructor to create emitter Instance

  8. Instance Private Field โ†” class field property with# prefix to store privately within Instance

  9. Static Method โ†” Method attach to class only & NOT Instance

  10. constructor() โ†” special class Method to pass args & setup new new Instance

  11. createStore() โ†” OLD Redux API fn to create new Store Instance

  12. express() โ†” Express function to init new Express Instance