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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T03:38:50+00:00 2026-06-13T03:38:50+00:00

Im removing one array from an array of arrays unto an empty array var

  • 0

Im removing one array from an array of arrays unto an empty array

var _open:Array = [[x, y]];
var _closed:Array = [];

_closed.push(_open.splice(0, 1));

which leaves me with array _closed being:

[[[x, y]]]

Does anyone know why? Because if I push something without using splice function I get what i expected, no extra nesting. For example:

_closed.push([8,13]);
// _closed is [[8,13]]

By the way, tracing (arrays mostly) in AS3 can get really annoying, so im using this function to know if there is some nesting in arrays:

public static function traceArray(aArray:Array):void
{
    for (var t:Object in aArray) {
        trace(t + " : " + aArray[t]);
        if (typeof(aArray[t]) == "object") {
            traceArray(aArray[t]);
        }
    }
    trace();
}
  • 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-06-13T03:38:51+00:00Added an answer on June 13, 2026 at 3:38 am

    Yeah, if you look at the docs, you can see that Array.splice returns an array, not an element of an array (even if the splice is only of length 1).

    This will do what you want, though may not be the solution you are after:

    _closed.push(_open.splice(0, 1)[0]);
    

    What might suit your needs more is to use

    _closed.push(_open.shift())
    

    or

    _closed.push(_open.pop())
    

    Depending on whether you would want the first or last element _open has more than one element. Though from the names _open and _closed, I am guessing you need to pull an element from an arbitrary position in _open (once it is closed)… and for that, you should go with the first solution.

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

Sidebar

Related Questions

I'm trying to collapse a data frame by removing all but one row from
I am removing button control from one list to another listh and following error
I have a low level caching mechanism which receives a json array from a
Possible Duplicates: How do I remove objects from an Array in java? Removing an
I'm having some trouble removing null values from a 2D array. I'm still a
This question is about removing sequences from an array, not duplicates in the strict
A Perl idiom for removing duplicate values from an array: @uniq = keys %{{map{$_=>1}@list}}
can some one tell me how can i remove string element from an array
When one thread manages an std::map adding and removing things, may another thread safely
How would an awk script (presumably a one-liner) for removing a BOM look like?

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.