数组

作者: beryl2012 | 来源:发表于2018-08-23 13:48 被阅读0次

    数组有三个属性: constructor, length, prototype

    有14个方法:concat(), join(), pop(), push(), reverse(), shift(), slice(), sort(), splice(), toSource(), toString(), toLocalString(), unshift(), valueOf()

    其中改变原有数组的方法有7个:pop(), push(), shift(), reverse(), sort(), splice(), unshift()

    其中不改变原数组的方法有7个: concat(), join(), slice(), toSource(), toString(), toLocalString(), valueOf()

    其中作用相反的几对有:pop() 和 shift()       push() 和 unshift()    

    作用相近的有:join()、 toString()、toLocalString()

    容易混淆的有:slice() 和 splice()

    和顺序有关的有: sort() , reverse()

    相关文章

      网友评论

          本文标题:数组

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