前端 · 02/19/2020 0

JS常见内置对象和方法复习

Array数组

属性:length constructor prototype

方法:pop()移除最后 shift()移除第一个

push()加

join()设置分隔符变字符串

concat() 连接数组

slice(头,尾)截取

splice() 删除 添加 替换

sort()排序

reverse()倒序

forEach()遍历

indexof(‘值’)求值的索引

String字符串

subStr()长度截取

subString()开始结束位截取

split()以x分隔为数组 [次数]

charAt(index)返回某位置字符

concat()

indexof(‘匹配字符串’,从哪里开始)

lastIndexOf() 倒着找

search()

parseInt()/parseFloat()字符串转数字

属性:length

eval()解析成js