Method ↔ function attach as Object property to define behaviour
aka Methods
Abstract Method
Method only declared w/o implementation
References
Prototypal Inheritance↔ Link for all Object to their Prototype, to mimic Inheritance access to Method & propsStatic Method↔ Method attach to Constructor Function (NOT Delegate via__proto__)protected↔ Modifier to restrict Method toclassor child classes.closest()↔ Method to return closest parent element for query stringInstance Method↔ Method to Delegate via__proto__@depecated↔ JSDoc tag to mark Method as deprecatedCC↔ ReactclassInstanceextendsReact.Component, provides render() Method to return UI, manage state & perform side effects on Lifecycle Methods.json()↔asyncChain Method to returnPromiseparse as JSON formatAccessor↔ Setter/ Getter Method to write/read Accessor Property in Objectget↔ JS Keyword modifier to create Getter by prefix Method definition.bind()↔FunctionInstance Method to fixthiskeyword for Method (with optional Argument), for new standalone fnprivate↔ JS Keyword & Property Modifier to restrict Method to withinclassonlyAPI↔ App's Method & properties exposed to outside with rules for interactingcreateRoot()↔react-dom/clientMethod to create new Root container to inject AppStatic Method↔ Method attach toclassonly & NOT InstanceAccessor Property↔ Value Modifier to set access via Getter & Setter MethodGetter↔ function to get a value, called as property literal; prepend Method withgetJS KeywordSetter↔ function to set a value, prepend class Method withsetJS Keyword. Called as property literal reassignmentInterface Object↔ Object to interact with API by expose Method & Property Keyrender()↔ CC Method inhert fromReact.Componentto return UI as JSX.then()↔asyncChain Method to execute Callback on Fullfill, auto-passPromiseValue as argFunction Type↔ Type to annotate Methods & Callback Function with implicit return ofanyconstructor()↔ specialclassMethod to pass args & setup new new InstanceAbstract Method↔ Method only declared w/o implementation