摘要:
AST 节点类型对照表 序号类型原名称中文名称描述 1 Program 程序主体 整段代码的主体 2 VariableDeclaration 变量声明 声明一个变量,例如 var let const 3 FunctionDeclaration 函数声明 声明一个函数,例如 function 4 Ex 阅读全文
摘要:
唯一 let hd = Symbol("angdh");let af = Symbol("jingchang");console.log(hd==af);console.log(hd.toString());console.log(hd.description);// false// Symbol( 阅读全文