美文网首页
基础知识

基础知识

作者: 我是大队长_1342 | 来源:发表于2020-02-11 15:21 被阅读0次

    例举3种强制类型转换和2种隐式类型转换

    参考:http://www.imooc.com/article/281312

    强制:(parseInt,parseFloat,Number,Boolean)

    隐式:

    1. ==
    2. +(转化为数字,和Number差不多)
    3. if()for()while()
    4. !(转化为布尔值)
    5. 逻辑非||和逻辑与&&
      (会对第一个值进行布尔判断,||第一个为false,返回第二个值,&&第一个为false,返回第一个值。)
    console.log("hello" || "love"); //输出:hello
    console.log("" || "love"); //输出:love
    console.log(1 && "love"); //输出:love 
    console.log(0 && "love"); //输出:0
    
    1. 三元表达式

    字符串的方法

    1.字符串截取

    (1)、slice() //stringObject.slice(start,end)

    (2)、substring() //同slice()完全一样,区别只在于遇到负数时,自动将参数转换为0.把较小的数作为开始位置,较大的数作为结束位置。

    (3)、substr()//stringObiect.substr(start,len)

    2.检索

    let a='123abc';
    a.charAt(0)//1
    a.charCodeAt(0)//49
    a.indexOf('c')//5
    a.lastIndexOf('2')//1
    

    3.大小写

    toUpperCase()
    toLowerCase()

    4.字符串对象的方法

    split() //变成数组
    replace()

    数组的方法

    参考:https://www.cnblogs.com/theblogs/p/10519318.html

    改变数组:push,pop,shift,unshift,splice(增删改),sort,reverse

    不改变数组:slice,join,concat,indexOf,lastIndeOf,includes,forEach

    数组实现去重

    参考:https://www.jb51.net/article/157091.htm

    (1)两层for,第一层遍历每个数,第二层遍历这个数之后的数,遇到相同的splice去重

    (2)用indexOf去重,遍历数组,用indexOf筛选新数组里面没有的数push到新数组里面

    (3)利用sort先排序,用递归左右比较,遇到相同的数删掉

    (4)es6,弊端:这种方法还无法去掉“{}”空对象

    [...new Set(arr)]
    Array.from(new Set(arr))//Array.from就是把类数组对象转化为数组对象
    

    (5)最全面的方法,可以用于数组种有对象的。用hasOwnProperty

    function unique(arr) {
      var obj = {};
      return arr.filter(function(item, index, arr){
        return obj.hasOwnProperty(typeof item + item) ? false : (obj[typeof item + item] = true)
      })
    }
    var arr = [1,1,'true','true',true,true,15,15,false,false, undefined,undefined, null,null, NaN, NaN,'NaN', 0, 0, 'a', 'a',{},{}];
    console.log(unique(arr))
    //[1, "true", true, 15, false, undefined, null, NaN, "NaN", 0, "a", {…}]  //所有的都去重了
    

    forEach、for in、for of 三者对比

    参考: chengweiyang.cn/gitbook/gitbook.com/README.html

    (1)Object.keys() 方法会返回一个由一个给定对象的自身可枚举属性组成的数组。

    (2)for in 遍历(当前对象及其原型上的)每一个可枚举属性名称,key会变成字符串类型。

    (3)forEach可以直接取到元素,同时也可以取到index值,存在局限性,不能continue跳过或者break终止循环,没有返回值,不能return。

    (4)for...of只能循环数组/字符串/maps/sets/interable,不能循环对象,可以配合Object.keys(),Object.values()使用

    相关文章

      网友评论

          本文标题:基础知识

          本文链接:https://www.haomeiwen.com/subject/scknxhtx.html