将日期对象打印为对象而不是覆盖的tostring方法

时间:2014-10-28 09:08:31

标签: javascript

如何在控制台中将Date作为对象而不是字符串打印?

我尝试了Object.toString(MyDate);命令,但这不起作用。

我需要这个,因为我使用原型扩展了我的Date对象,并希望看到对象看起来是否正确。

1 个答案:

答案 0 :(得分:4)

听起来像是在寻找console.dir(MyDate);

https://developer.mozilla.org/en-US/docs/Web/API/Console.dir

Displays an interactive list of the properties of the specified JavaScript object.
The output is presented as a hierarchical listing with disclosure triangles that
let you see the contents of child objects.