toSource 方法

返回表示对象源代码的字符串。

语法:
  1. dateObject.toSource();
注:

该方法在 Internet Explorer 中无效。

示例:
  1. var DATE = new Date();
  2. console.log( DATE.toSource() );
结果:
  1. >>>
  2. (new Date(1384323879074))
  3. string