How to show full object in Chrome console?

前端 未结 9 1282
情话喂你
情话喂你 2020-11-28 02:04
var functor=function(){
    //test
}

functor.prop=1;

console.log(functor);

this only show the function part of the functor, cannot show the prope

9条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-28 02:13

    With modern browsers, console.log(functor) works perfectly (behaves the same was a console.dir).

提交回复
热议问题