Javascript函数返回未定义

时间:2018-03-09 18:24:42

标签: javascript

为什么一个案例会返回一个对象(func1)但另一个案例返回undefined(func2)

enter image description here

function func1(){
     return {
     bar: "hello"
    };
 }
 function func2(){
     return
    {
     bar: "hello"
    };
 }

0 个答案:

没有答案