js实现数组手动循环
let arr = ['ceshi', 'wanjun', 'wanjunshijie']
let list=arr.entries()
console.log(list.next().value)
conso...
yekong
3年前 (2021-09-06)
喜欢
只有值
let arr = ['ceshi', 'wanjun', 'wanjunshijie']
for (let val of arr) {
console.log(val)
}
结果
ceshi
wanjun
wanj...
yekong
3年前 (2021-09-06)
喜欢
arr.fill(value,start,end)
value要替换成的内容
start开始的位置
end结束的位置
let arr = ['ceshi', 'wanjun', 'wanjunshijie']
arr.fill(...
yekong
3年前 (2021-09-06)
喜欢
arr.find
let arr = [1,2, 3, 4, 5, 6, 7, 8, 9];
console.log(arr.find(function (value, index, arr) {
return value > 10;
}))
console.log...
yekong
3年前 (2021-09-06)
喜欢
将一些不规范的内容转为数组
let arr = Array.of(3, 4, 5, 6)
console.log(arr)
[3, 4, 5, 6]
...
yekong
3年前 (2021-09-06)
喜欢
Array.from(json)
let json = {
'0': 'wanjun',
'1': '小程序',
'2': 'uniapp',
leng...
yekong
3年前 (2021-09-06)
喜欢
console.log(Number.isSafeInteger(Number.MAX_SAFE_INTEGER))
console.log(Number.isSafeInteger(Number.MAX_SAFE_INTEGER + 1))
结果
true
false
...
yekong
3年前 (2021-09-06)
喜欢
console.log(Number.MIN_SAFE_INTEGER)
结果
-9007199254740991
...
yekong
3年前 (2021-09-06)
喜欢
console.log(Number.MAX_SAFE_INTEGER)
结果
9007199254740991
...
yekong
3年前 (2021-09-06)
喜欢
js使用Number.parseInt(b)将数字转为整数
let b = 11.1
console.log(Number.parseInt(b))
结果
11
...
yekong
3年前 (2021-09-06)
喜欢