Argument ↔ Value import as Parameter input to function
aka args, arg
Variable
named ref (Identifier) bound to a Value
References
Higher-Order Function↔ fn to receive Callback arg, to return fn, or bothParameter↔ Variable pass into function to define Function Signature, imports Arguments & act as local variablefunction↔ JS Keyword to Declare function (with optional Argument Parameters)Boolean↔ Autoboxing Wrapper forbooleanPrimitive; converts Argument toboolean.call()↔FunctionInstance Method to invoke function with explicitthiskeyword [and optional Argument]isNaN()↔ Instance Method returnsbooleanif Argument isNaNor not; applies CoercionArgs Object↔ Object to contain all args pass into function (for current EC)Math.atan2(y,x)↔ [Math](math) [Static Method](static-method) to return arctangent of quotient of Argument.bind()↔FunctionInstance Method to fixthiskeyword for Method (with optional Argument), for new standalone fnMemoization↔ (Design Pattern) to Cache/reuse previousreturnvalue from Pure Function for specific args, to optimize perfURIError↔ Exception when URI Handler (encodeURI()||decodeURI()) pass incorect argsparseFloat()↔ to parsestringarg & returnnumberas Floating-Pointeval()↔ to evaluate Code arg asstringat Runtime - bad for security/perf@mixin↔ At-Rule to Encapsulate Style Rule with optional argsSet()↔ Constructor to convert iterable arg toset.then()↔asyncChain Method to execute Callback on Fullfill, auto-passPromiseValue as argDeps Array↔ Deps[] to pass as last arg to Trigger Hookprocess.argv↔ (property) to return string[] of argument variable for cmd argsInitialization Argument↔ arg pass to Init FnRest Parameter↔...JS Syntax prefix Identifier to receive Array with arb remaining argsObject Literal Type↔ Type Annotation for Object Literal, use for inline anon Object pass as arg.isSameNode()↔ to returnbooleanif two nodes args are samereducer↔ to pass reducer object - only required arg to config StoreTyped Callback Function↔ Type Annotation for Anon Function pass as arg to function.contains()↔ to returnbooleanif argNodeis descendent of callingNodequery string↔ argstringto matchNodefor.querySelector()&.querySelectorAll()constructor()↔ specialclassMethod to pass args & setup new new Instance