摘要:
创建 Date 对象 Date 对象由新的 Date() 构造函数创建。 有 4 种方法创建新的日期对象: new Date() new Date(year, month, day, hours, minutes, seconds, milliseconds) new Date(millisecon 阅读全文
摘要:
因为typeof Array == object, 故判断数组是否是数组需要两个方法 1Array.isArray() 2function isArray(x) { return x.constructor.toString().indexOf("Array") > -1; } 3 fruits i 阅读全文