摘要: 一、Set数据结构 特点:相比Array,里面的元素具有唯一性。 创建:new Set(value) : value必须具有 iteable 接口的数据结构 属性: 1.construct 2.size 方法: 1.操作方法 (1)add(value) (2)delete(value) (3)has 阅读全文
posted @ 2021-01-14 17:12 拉布拉多~ 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 一、属性 二、方法 1、typeof(value) : 判断数据类型 返回值有6种:undefined object function string number boolean 【注意:null 和 数组都是返回object】 console.log(typeof(undefined)); con 阅读全文
posted @ 2021-01-14 16:30 拉布拉多~ 阅读(311) 评论(0) 推荐(0) 编辑