假设我有此方法:
const makeSound = (animal, breed) => { // vs code will show something like --> animal: cat, breed: scottishfold
// do something
}
makeSound("cat", "scottishfold");
我看过一些截屏视频,它们的VS Code显示了键入时在代码编辑器本身(内联)中传递的参数的值。我发现这是一项有用的功能,因为我不需要经常进行console.logs
。
这个扩展名是什么?