ES6 static 关键字 ES6 访问函数 ES6 instanceof 操作符 ES6 static 关键字 'use strict'; class StaticMem { static disp() { console.log("Static 函数 called") ; } } StaticMem.disp(); //invoke the static metho ES6 访问函数 ES6 instanceof 操作符