ForEach JS 中 forEach 遍历数组的时候是无法通过 break
或者 return false
来中断的。
取整 向下取整
向下取整就是在坐标轴上从左到右取离原数最近的整数
number | 0 JS 没有整数的概念,所有的数值型都是双精度浮点数。而浮点数无法直接进行位运算 ,在用位运算符时,JS 会先把操作数转变成整数再进行位运算,而 0 与其他值异或或者按位或都不会改变操作数,进而实现取整。
但是对于正数来说会进行向下取整,而对于负数则会进行向上取整。
1 2 3 4 5 6 7 8 9 10 11 ·> -1.9 | 0 <· -1 ------------- ·> -1.1 | 0 <· -1 ------------- ·> 1.1 | 0 <· 1 ------------- ·> 1.9 | 0 <· 1
树的遍历
JS 中遍历树| Deng’s Blog
二叉树遍历(前序、中序、后序、层次遍历、深度优先、广度优先)
递归遍历 需求说明:公司项目中要求增加一个排序按钮,对地址树进行排序。排序则需要对树进行遍历,递归的排序子结点。
递归代码:
1 2 3 4 5 6 7 8 9 recursive (root) { if (!root || !root.childNodes) { return } ... root.childNodes.forEach((node ) => { this .recursive(node) }) }
Array unshift()
Array.prototype.unshift() | MDN
unshift() 方法将一个或多个元素添加到数组的开头 ,并返回该数组的新长度 (该方法修改原有数组)
1 2 3 4 5 6 7 var array1 = [1 , 2 , 3 ];console .log(array1.unshift(4 , 5 ));console .log(array1);
map()
Array.prototype.map()
map()
方法创建一个新数组,其结果是该数组中的每个元素都调用一个提供的函数后返回的结果。
splice()
Array.prototype.splice() - MDN
splice() 方法通过删除或替换现有元素或者原地添加新的元素来修改数组,并以数组形式返回被修改的内容。此方法会改变原数组。
获取数组的最后一个元素
JavaScript 获取数组的最后一个元素方法(多种)
浅复制的slice方法
1 2 var args = [1 , 2 , 3 ];var lastElement = args.slice(-1 );
判空
Check if array is empty or does not exist. JS
Js Array 并没有 isEmpty() 这种直接判空的方法,需要使用如下方式进行判空
1 2 3 if (!array || array.length === 0 ) { }
遍历删除子结点 描述 具有层级结构的结点数组,如何在遍历的过程中删除所有的子结点
方法 从后往前遍历数组,然后在遍历过程中删除子结点。需要注意的是数组中结点的顺序必须保证子结点一定在父结点之后 。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 let tree = [{ id: 1 , name: 'Aisa' , parentId: 0 }, { id: 11 , name: 'China' , parentId: 1 }, { id: 2 , name: 'Europe' , parentId: 0 }, { id: 21 , name: 'France' , parentId: 1 }] console .log('########### Before ###########' )console .log('tree:' , tree)tree.forEach((item ) => { console .log(`name : ${item.name} ` ) }) let ids = tree.map(item => item.id)for (let i = tree.length - 1 ; i >= 0 ; i--) { let node = tree[i] if (ids.includes(node.parentId)) { tree.splice(i, 1 ) } } console .log('########### After ###########' )console .log('tree:' , tree)tree.forEach((item ) => { console .log(`name : ${item.name} ` ) })
1 2 3 4 5 6 7 8 9 10 ########### Before ########### tree: [{"id":1,"name":"Aisa","parentId":0},{"id":11,"name":"China","parentId":1},{"id":2,"name":"Europe","parentId":0},{"id":21,"name":"France","parentId":1}] name : Aisa name : China name : Europe name : France ########### After ########### tree: [{"id":1,"name":"Aisa","parentId":0},{"id":2,"name":"Europe","parentId":0}] name : Aisa name : Europe
indexOf()
Array.prototype.indexOf()
indexOf() 方法返回在数组中可以找到一个给定元素的第一个索引,如果不存在,则返回-1。
includes()
Array.prototype.includes()
includes() 方法用来判断一个数组是否包含一个指定的值,根据情况,如果包含则返回 true,否则返回false。
from()
Array.from() | MDN
Array.from()
方法从一个类似数组或可迭代对象中创建一个新的,浅拷贝的数组实例。
将 Set 转化为 Array
How to convert Set to Array?
1 let array = Array .from(mySet);
Set add()
Set.prototype.add() | MDN
add()
方法用来向一个 Set
对象的末尾添加一个指定的值。
Set 没有直接添加一个数组的方法,只能通过构造函数来添加:
1 2 3 4 const set = new Set(['a', 'b', 'c'])const arr = ['d', 'e', 'f'] const extendedSet = new Set([ ...set , ...arr ]) // Set { 'a' , 'b' , 'c' , 'd' , 'e' , 'f' }
Map delete()
Map.prototype.delete()
delete()
方法用于移除 Map
对象中指定 key 的键值对。
String localeCompare()
String.prototype.localeCompare() | MDN
localeCompare() 方法返回一个数字来指示一个参考字符串是否在排序顺序前面或之后或与给定字符串相同。
项目中在对树结点按字母排序时使用:
1 2 3 4 5 6 7 root.childNodes.sort((a, b ) => { if (sortDirection === 'asc' ) { return a.data.englishName.localeCompare(b.data.englishName) } else if (sortDirection === 'desc' ) { return b.data.englishName.localeCompare(a.data.englishName) } })
Console
console.log()
Chrome 控制台不完全指南
1 console .log(`temp的值为: ${temp} ` )
Element element.className.replace()
How TO - Remove a Class
1 2 var element = document .getElementById("myDIV" );element.classList.remove("mystyle" );