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 forboolean
Primitive; converts Argument toboolean
.call()
↔Function
Instance Method to invoke function with explicitthis
keyword [and optional Argument]isNaN()
↔ Instance Method returnsboolean
if Argument isNaN
or 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()
↔Function
Instance Method to fixthis
keyword for Method (with optional Argument), for new standalone fnMemoization
↔ (Design Pattern) to Cache/reuse previousreturn
value from Pure Function for specific args, to optimize perfURIError
↔ Exception when URI Handler (encodeURI()
||decodeURI()
) pass incorect argsparseFloat()
↔ to parsestring
arg & returnnumber
as Floating-Pointeval()
↔ to evaluate Code arg asstring
at Runtime - bad for security/perf@mixin
↔ At-Rule to Encapsulate Style Rule with optional argsSet()
↔ Constructor to convert iterable arg toset
.then()
↔async
Chain Method to execute Callback on Fullfill, auto-passPromise
Value 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 returnboolean
if 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 returnboolean
if argNode
is descendent of callingNode
query string
↔ argstring
to matchNode
for.querySelector()
&.querySelectorAll()
constructor()
↔ specialclass
Method to pass args & setup new new Instance