(一)以空格作为
分隔
符切割
字符串
1.直接使用.split(" ")
分割
空格
let str = "hellow world!" //注意hellow与world之前有两个空格
console.log(str.trim().split(" "))
console.log(str.trim().split(" ").length)
2.使用正则表达式
分割
空格
//我们希望的结果是hellow和world,长度为2
//需要消除多余空格的影响
let str = "hellow w
2.定一个remove 删除函数,
数组
中没有remove方法
Array.prototype.remove = function (val) {
let index = this.indexOf(val);
if (index > -1) {
BlackCatFish: