Join Array from startIndex to endIndex

后端 未结 2 372
深忆病人
深忆病人 2021-01-11 10:52

I wanted to ask if there is some kind of utility function which offers array joining while providing an index. Maybe Prototype of jQuery provides this, if not, I will write

相关标签:
2条回答
  • 2021-01-11 11:40

    It works native

    ["a", "b", "c", "d"].slice(1,3).join("-") //b-c
    

    If you want it to behave like your definition you could use it that way:

    Array.prototype.myJoin = function(seperator,start,end){
        if(!start) start = 0;
        if(!end) end = this.length - 1;
        end++;
        return this.slice(start,end).join(seperator);
    };
    
    var arr = ["a", "b", "c", "d"];
    arr.myJoin("-",2,3)  //c-d
    arr.myJoin("-") //a-b-c-d
    arr.myJoin("-",1) //b-c-d
    
    0 讨论(0)
  • 2021-01-11 11:53

    Just slice the array you want out, then join it manually.

    var array= ["a", "b", "c", "d"];
    var joinedArray = array.slice(1, 3).join("-");
    

    Note: slice() doesn't include the last index specified, so (1, 3) is equivalent to (1, 2).

    0 讨论(0)
提交回复
热议问题