Visual Studio代码未显示与“原型”相对应的方法

时间:2019-06-24 07:47:41

标签: visual-studio-code

来自 Java(IntelliJ)背景,试图通过VSC学习 JavaScript ,发现很难理解为什么下面的代码原型未显示其相应方法

function Dog(name){
    this.name = name;
}

let beagle = new Dog("tommy");


Dog.prototype.    #Here typing dot doesn't show list of methods

0 个答案:

没有答案