Javascript Array toObject()

Description

Javascript Array toObject()

Array.prototype.toObject = function() {
    var Self = this;
    var results = {};
    for(var i=0; i<Self.length; i+=2){
        results[Self[i]] = Self[i+1];/*from  w  w  w .  j  av a  2 s  .  co  m*/
    }
    return results;
};

Javascript Array toObject()

/**/*from w ww. j  a v a 2  s.c o  m*/
 * Copyright 2014 ??????? [develo.pe]
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */
 
'use strict';

Array.prototype.toObject = function() {
 var arr = this,
  res = { } ;
 for (var i = 0 ; i < arr.length ; i++) {
  res[ arr[i] ] = arr[i]
 }
 return res
}



PreviousNext

Related