标签: 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