欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JS - 3 - typeof、instanceof、date、console.time、ISO与TIMESTAMP转换

程序员文章站 2022-05-20 14:57:20
...

# typeof

看类型的

    console.log(typeof a);    //'undefined'

    console.log(typeof(true));  //'boolean'

    console.log(typeof '123');  //'string'

    console.log(typeof 123);   //'number'

    console.log(typeof NaN);   //'number'

    console.log(typeof null);  //'object'    

    var obj = new String();

    console.log(typeof(obj));    //'object'

    var  fn = function(){};

    console.log(typeof(fn));  //'function'

    console.log(typeof(class c{}));  //'function'

# instanceof

看原型链的 、后面章节看原型链就是知道了

# 时间戳 Date

JS - 3 - typeof、instanceof、date、console.time、ISO与TIMESTAMP转换

JS - 3 - typeof、instanceof、date、console.time、ISO与TIMESTAMP转换

# console.time

JS - 3 - typeof、instanceof、date、console.time、ISO与TIMESTAMP转换

# ISO与TIMESTAMP转换

JS - 3 - typeof、instanceof、date、console.time、ISO与TIMESTAMP转换

JS - 3 - typeof、instanceof、date、console.time、ISO与TIMESTAMP转换

# 时间格式化

## 手写

JS - 3 - typeof、instanceof、date、console.time、ISO与TIMESTAMP转换

## 第三方库

Momen.js

当前时间
JS - 3 - typeof、instanceof、date、console.time、ISO与TIMESTAMP转换
指定时间
JS - 3 - typeof、instanceof、date、console.time、ISO与TIMESTAMP转换
几天后

JS - 3 - typeof、instanceof、date、console.time、ISO与TIMESTAMP转换

相关标签: # ECMAscript 6