当我运行代码时:
function F35() { return this; }
F35.Speed = 2600;
console.log('Here is the function:', F35);
console.log('Here is the property:', F35.Speed);
输出如下: Here is the function: ƒ F35() { return this; }
Here is the property: 2600
该函数附近没有箭头标志,允许我打开其属性。如果我记录一个对象,这是可能的。我可以对功能做同样的事情吗?每个函数都有其他属性,例如原型(prototype)和其他属性。 最佳答案
除了.dir()
之外,您还可以将函数放在方括号中,如下所示:
console.log({F35})
关于javascript - 有什么方法可以在Chrome控制台中将JavaScript函数作为对象查看吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/58833147/