Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6157693
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T20:49:42+00:00 2026-05-23T20:49:42+00:00

I am looking for a solution, to push/convert array items into a object back,

  • 0

I am looking for a solution, to push/convert array items into a object back, without using keys?

function pleaseBuy(){
    var args = arguments;
    for(var i = 0; i < arguments[0].length; ++i) {
        args += args[i];
    };
};

function getList(){
   return ["pepsi","cola","7up"];
}

var list = ({ favorite: "drpepper"}, getList())
pleaseBuy(list)

Expected result:

args = ({ favorite: "drpepper"}, "pepsi", "cola", "7up")
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T20:49:42+00:00Added an answer on May 23, 2026 at 8:49 pm

    No need for the pleaseBuy function, I’d say:

    function getList(){
       return ["pepsi","cola","7up"];
    }
    
    var list = getList().concat( { favorite: "drpepper" } );
    //                                     ^ NB should be :
    // or favorite first
    var list = [{ favorite: "drpepper" }].concat(getList());
    /* 
       list now contains:
       ['pepsi, 'cola','7up',{ favorite: "drpepper" }]
    */
    

    An object allways contains key-value pairs. If you want to convert an array to an object, you’ll thus have to assign keys and values. For example:

    var arr = [1,2,3,4,'some'], arr2Obj = {};
    for (var i=0;i<arr.length;i=i+1){
       arr2Obj[arr[i]] = i;
    }
    
    /* 
       arr2Obj now contains:
       { 
         1: 0,
         2: 1,
         3: 2,
         4: 3,
         some: 4
       }
    */
    

    Other example:

    var arr = [1,2,3,4,'some'], arr2Numbers = {};
    for (var i=0;i<arr.length;i=i+1){
           arr2Numbers[arr[i]] = !isNaN(Number(arr[i]));
    }
    /* 
       arr2Numbers now contains:
       { 
         1: true,
         2: true,
         3: true,
         4: true,
         some: false
       }
    */
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The same question is answered in jQUery but I'm looking for solution without jQuery.
Looking for a solution in bash (will be part of a larger script). Given
I was looking for a solution for client side printing of reports and pre
Just looking for the first step basic solution here that keeps the honest people
I'm looking for an online solution for generating .ICO files. I'd like the ICO
I'm looking for a quick-and-dirty solution to this, I have to set up a
I am looking for a better solution than what we currently have to deal
I'm looking for a general solution for upgrading database schema with ORM tools, like
We are looking for a free solution to compress our SQL Server backups for
I am looking for a simple templating solution for ruby, i.e. something that will

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.