首页 > Web开发 > 详细

node.js打印function

时间:2018-05-22 13:44:45      阅读:192      评论:0      收藏:0      [点我收藏+]
var Person = function(name) {
this.name = name;
this.gender = [‘man‘, ‘woman‘];
}
console.log(Person);
console.dir(Person);
console.dir(JSON.stringify(Person));
console.log(typeof(Person));
console.log(Person.toString());

  

上面打印的结果:

[Function: Person]
[Function: Person]
undefined
function
function (name) {
   this.name = name;
   this.gender = [‘man‘, ‘woman‘];
}

  

可以采用toString()的方式对函数进行打印。

 

node.js打印function

原文:https://www.cnblogs.com/yourstars/p/9071322.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!