码迷,mamicode.com
首页 > Web开发 > 详细

node.js打印function

时间:2018-05-22 14:46:57      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:efi   func   person   undefined   OLE   str   mil   soft   mic   

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

标签:efi   func   person   undefined   OLE   str   mil   soft   mic   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!