标签: javascript
为什么一个案例会返回一个对象(func1)但另一个案例返回undefined(func2)
enter image description here
function func1(){ return { bar: "hello" }; } function func2(){ return { bar: "hello" }; }