判断题
使用的时候直接对类使用new命令。
正确
判断题 class Point { // ...}Point === Point.prototype.constructor返回true。
判断题 class Point{//...}typeofPoint//返回值是“function”。
判断题 方法之间需要逗号分隔。