函数中的对象返回undefined

时间:2014-11-25 12:41:01

标签: javascript node.js

这是我的功能

var human = function(){
  return { id : 1,
    name : 'test',
    email : 'test'
  }    
}

但是当我打电话时

console.log(human());

它返回' undefined'

我做错了什么?

1 个答案:

答案 0 :(得分:0)

'test'

附近缺少引号
var human = function(){
  return { id : 1,
    name : "test",
    email : "test"
  }    
}

console.log(human());