AST
AST is defined as: tree data struct to rep Source Code by organize JS Keywords for JS Engine. Topics on: JS Engine uses AST to check SyntaxError & generate Mach
AST is defined as: tree data struct to rep Source Code by organize JS Keywords for JS Engine. Topics on: JS Engine uses AST to check SyntaxError & generate Mach
async is defined as: JS Keyword to prepend function to allow Asynchronous Code. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Concurrency Model, Asyn
async function is defined as: JS Keyword to Declaration function with Asynchronous Code to return Promise & allow await inside. Topics on: !snippet async fnshow
await is defined as: JS Keyword to suspend execute JS code portion until Promise Settled & returns result. Topics on: await must be used inside async function -
break is defined as: JS Keyword to end current loop/switch. Topics on: . Read more: JS, JS Language, Statement, Control Flow, Break, JS Keyword, Switch|Dev Wiki
class is defined as: JS Keyword to declare Class (as Syntactic Sugar over Constructor Function). Topics on: class is more compact JS Syntax to set up Prototype
const is defined as: JS Keyword to Declaration read-only named constant Variable with Block Scope. Topics on: . Read more: JS, JS Language, Declaration, JS Keyw
continue is defined as: JS Keyword to end execution of Statement in current Iteration of loop, & continue execution with next iteration in loop. Topics on: . Re
currentcolor is defined as: JS Keyword to set/inherit value of element's color CSS Property. Topics on: can be used in place of color property to inherit value
export is defined as: JS Keyword to export Module. Topics on: . Read more: JS, Lib, Module, ES Module, JS Keyword|FullStack Wiki by Roger J
function is defined as: JS Keyword to Declaration function (with optional Argument Parameters). Topics on: Parameter handling, Specialized Function, Entity, JS
Getter is defined as: function to get a value, called as property literal; prepend Method with get JS Keyword. Topics on: get, !snippet getter called as a prope
if is defined as: Control Flow JS Keyword to optionally execute Block on Boolean Context of expression. Topics on: . Read more: JS, JS Language, Statement, Cont
import is defined as: JS Keyword Declaration to import live read-only views on exports. Topics on: live bindings, binding, import.meta. Read more: JS, Lib, Modu
JS Keyword is defined as: reserved Lexical word for JS Compiler. Topics on: abstract, arguments, await, boolean, byte, case, catch, char, debugger, default, del
label is defined as: to prefix Statement with Identifier to call with break & continue. Topics on: used to label continue & break statements, acts similar to go
let is defined as: JS Keyword to Declaration mutable Variable with Block Scope. Topics on: . Read more: JS, JS Language, Declaration, JS Keyword, Mutable, Varia
namespace. Topics on: . Read more: JS, JS Language, JS Keyword, Namespace|FullStack Wiki by Roger J
private is defined as: JS Keyword & Property Modifier to restrict Method to within class only. Topics on: why use private modifier?. Read more: JS, TS, TS Synta
readonly is defined as: Property Modifier JS Keyword to set Object property as read-only. Topics on: !snippet interface with readonly prop. Read more: JS, TS, T
return is defined as: JS Keyword to specify a single Variable/Expression output from function. Topics on: . Read more: JS, JS Language, Declaration, Return, JS
Setter is defined as: function to set a value, prepend class Method with set JS Keyword. Called as property literal reassignment. Topics on: set, !snippet sette
static is defined as: JS Keyword to define Static Method/property for class. Topics on: . Read more: JS, JS Concepts, Multi Paradigm, Paradigm, OOP, Prototypal
throw is defined as: JS Keyword Statement to stop executing current function with user-defined Exception. Topics on: . Read more: JS, JS Language, Exception, Ex
var is defined as: JS Keyword to Declaration mutable Variable with Function Scope. Topics on: . Read more: JS, JS Language, Declaration, JS Keyword, Mutable, Va
with is defined as: JS Keyword to extend Scope Chain of Statement . !Forbidden in Strict Mode!. Topics on: syntax, with (param) selects the default object in sc