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 toclass
or 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
↔ Reactclass
Instanceextends
React.Component
, provides render() Method to return UI, manage state & perform side effects on Lifecycle Methods.json()
↔async
Chain Method to returnPromise
parse as JSON formatAccessor
↔ Setter/ Getter Method to write/read Accessor Property in Objectget
↔ JS Keyword modifier to create Getter by prefix Method definition.bind()
↔Function
Instance Method to fixthis
keyword for Method (with optional Argument), for new standalone fnprivate
↔ JS Keyword & Property Modifier to restrict Method to withinclass
onlyAPI
↔ App's Method & properties exposed to outside with rules for interactingcreateRoot()
↔react-dom/client
Method to create new Root container to inject AppStatic Method
↔ Method attach toclass
only & NOT InstanceAccessor Property
↔ Value Modifier to set access via Getter & Setter MethodGetter
↔ function to get a value, called as property literal; prepend Method withget
JS KeywordSetter
↔ function to set a value, prepend class Method withset
JS Keyword. Called as property literal reassignmentInterface Object
↔ Object to interact with API by expose Method & Property Keyrender()
↔ CC Method inhert fromReact.Component
to return UI as JSX.then()
↔async
Chain Method to execute Callback on Fullfill, auto-passPromise
Value as argFunction Type
↔ Type to annotate Methods & Callback Function with implicit return ofany
constructor()
↔ specialclass
Method to pass args & setup new new InstanceAbstract Method
↔ Method only declared w/o implementation