标签: javascript
为什么此Javascript函数返回未定义?
function func() { return { name: 'Daniel' }; }
但是此函数正在返回对象吗?
function func() { return {name: 'Daniel'}; }
谢谢!