<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script>
function foo1()
{
return{
bar: "hello1"
};
}
function foo2()
{
return
{
bar2: "hello2"
};
}
var a=foo1();
var b=foo2();
alert(a);
alert(b);
//为何第一次出来object object 第二次undefined
</script>
</body>
</html>
弑天下
相关分类