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

  • Home
  • SEARCH
  • 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

I'm looking for a solution to convert a set of files using the terminal
I'm looking for solution to extract some node from large xml file (using xmlstarlet
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
I'm looking for a solution for capturing audio from a user's microphone and posting
I'm looking for a solution to find out about the MAC number of a
I am looking for a solution on the following issue. Any suggestions will be
I'm looking for a solution similar to the iPhone Facebook Connect ( https://github.com/facebook/facebook-ios-sdk )
I'm looking for a solution like the one discussed here, but for C# WinForms.
I'm looking for a solution to the following: Given today's date, figure out what

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.