ES6 instanceof 操作符 ES6 static 关键字 ES6 类继承 ES6 instanceof 操作符 'use strict' class Person{ } var obj = new Person(); var isPerson = obj instanceof Person; console.log(" obj is an instance of Person " + isPerson); ES6 static 关键字 ES6 类继承