if(arr1 instanceof Array != true || arr2 instanceof Array != true) return false
const arrs1 = arr1.map( current =>Object.prototype.toString.call(current)).sort()
const arrs2 = arr2.map( current =>Object.prototype.toString.call(current)).sort()
return arrs1.toString()==arrs2.toString() ? true : false
const arrs1 = arr1.map( current =>Object.prototype.toString.call(current)).sort()
const arrs2 = arr2.map( current =>Object.prototype.toString.call(current)).sort()
return arrs1.toString()==arrs2.toString() ? true : false
最赞回答 / WingMeng
++i 的效果等价于 i = i + 1,所以 n[i] = ++i 这样会直接影响到 for 循环里 i 的值,for 循环实际只循环了 5 次,i 的值依次为 0, 2, 4, 6, 8:
// 第1次。上一次 i 的值为 0,i 在循环初始 (0++) 为 0 ...
2018-07-10