如题,如果你程序名是a.js 则在命令行中运行 node a.js 及 cat a.js (linux, osx) 或 type a.js (windows, dos) 及 cat a.js | node node a.js | node | node | node … | node , 任意多的 |node 结果都一样 输出内容一样。非空短者胜
其实不难,不过瘾,可以用c试试
25 回复
var bar;
var test;
(function(){
console.log(arguments.callee.caller.toString().slice(61, -1));
})();
@coordcn 我试了,你的这个没正常的结果,另外长度是56字节,还是长,怎么是20个? 如果是(function(){console.log(arguments.callee.caller.toString().slice(61, -1));})() 长度79,输出时还多了3个回车,与原文不符
@zealoth 我试过了啊,数错了,应该是20几双。 console.log(arguments.callee.toString().slice(61, -1)); 按上面的,没注意回车啊,我再改进下。