lodash.chain上的console.log不起作用

时间:2015-10-28 16:41:36

标签: javascript node.js lodash

node.js repln_console.log(n)可以打印{b:3},如下所示

n_ > var c = {a: {b: 3}}
undefined
n_ > _.chain(c).map(function(n){console.log(n); return n} ).values();
{ b: 3 }
{ __wrapped__: { a: { b: 3 } },
  __actions__: 
   [ { func: [Function: thru], args: [Object], thisArg: [Object] },
     { func: [Function: values], args: {}, thisArg: [Object] } ],
  __chain__: true }
n_ > 

但是在Chrome console上或通过node xx.js运行此代码段脚本,console.log(n)无效,就像Chrome console上的以下图片一样

enter image description here

那么,为什么会发生这种情况呢? 谢谢!

0 个答案:

没有答案