判断题
正确
class Point { // ...}Point === Point.prototype.construc...
判断题class Point { // ...}Point === Point.prototype.constructor返回true。
class Point{//...}typeofPoint//返回值是“function”。
判断题class Point{//...}typeofPoint//返回值是“function”。
方法之间需要逗号分隔。
判断题方法之间需要逗号分隔。