摘要: 创建 Date 对象 Date 对象由新的 Date() 构造函数创建。 有 4 种方法创建新的日期对象: new Date() new Date(year, month, day, hours, minutes, seconds, milliseconds) new Date(millisecon 阅读全文
posted @ 2020-07-20 12:00 油闷大虾啊 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 因为typeof Array == object, 故判断数组是否是数组需要两个方法 1Array.isArray() 2function isArray(x) { return x.constructor.toString().indexOf("Array") > -1; } 3 fruits i 阅读全文
posted @ 2020-07-20 11:01 油闷大虾啊 阅读(198) 评论(0) 推荐(0) 编辑