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 6751839
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T12:58:29+00:00 2026-05-26T12:58:29+00:00

I have an object and some of its elements are object too. How can

  • 0

I have an object and some of its elements are object too. How can I make my variable just one object?

I mean I have a variable that has elements:

  • name
  • type

type is an object that has field:

  • name

So I one that:

  • name
  • type.name (not as an object just another variable as like name)

PS:
When I inspect my variable with Firebug:

name
    "fsfaf"

password
    "242342425"

name
    "XXX"

type
    Object { name="sds"}

name
    "sfs"

Let’s assume that I hold it with a variable myVariable. I want to do something like that:

var newVariable = somefunction(myVariable);

so my newVariable should be like that:

name
    "fsfaf"

password
    "242342425"

name
    "XXX"

type.name
    "sds"

name
    "sfs"
  • 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-26T12:58:30+00:00Added an answer on May 26, 2026 at 12:58 pm

    I edited my answer too. Here’s a way to do what you want:

    var myVar = 
    {
        name: 'myName', 
        type: { name: 'type.name' }
    }
    
    function varToNewVar(myVar)
    {
        var newVar = {};
    
        for(var i in myVar)
        {
            if(typeof myVar[i] === 'object')
            {
                for(var j in myVar[i])
                {
                    newVar[i+'.'+j] = myVar[i][j];
                }
            }
            else
                newVar[i] = myVar[i];
        }
    
        return newVar;
    }
    
    var newVar = varToNewVar(myVar);
    

    However, this way you cannot access newVar.type.name, you can access newVar[‘type.name’], which I guess is OK for what you want to accomplish…

    P.S. Test extensively before applying to live projects, etc. I imagine a lot of things can go wrong, depending on the objects that you’re using. There should be no problem to use it in the situation you want though

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an object config which has some properties. I can export this ok,
I have some object that is instantiated in code behind, for instance, the XAML
I am using C# 2.0 with Nunit Test. I have some object that needs
So I have an object which has some fields, doesn't really matter what. I
I think I read somewhere that some modules only have object oriented interfaces (
I have an object Project which has a number of fields, one of which
I have some working Javascript that manipulates the some DOM elements. The problem is,
I have a ListView that has one image and two lines of texts for
I have Spring REST application that can marshall an object to JSON when a
I have an NSMutableArray of custom objects called Clip. Each clip Object has some

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.