我一直在遵循Traversy Media JavaScript速成课程。我注意到我无法像他那样获得Visual Studio Code来显示对象的方法。我搜索了一下,并说应该自动打开IntelliSense,但它对我不起作用。有帮助吗?
答案 0 :(得分:1)
您的代码中有一些错误使IntelliSense无法正常工作:
function Person(dob){
this.dob = new Date(dob); //semicolon here
}
const person1 = new Person('John', 'Doe', '4-3-1980'); //define that person1 (your p) is const variable, and semicolon
person1.dob.getDate(); //and your IntelliSense will prompt object methods normally