473,396 Members | 1,774 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

make array empty

Hi, Can someone tell me, How to redefine array or make array empty or
null.

Here what I am trying to do.
var temp = new Array();
for(i=0; i <=outstring.length-1; i++) {
temp = outstring[i].split(',');
}

Once the for loop will finish doing it, I want temp array to be null
or blank.
How Can I do that?
I tried doing temp.length =0 but that didn't work.
Oct 8 '08 #1
8 5830
On Oct 8, 3:10*pm, Sunny <sunnyluth...@gmail.comwrote:
Hi, Can someone tell me, How to redefine array or make array empty or
null.

Here what I am trying to do.
var temp = new Array();
for(i=0; i <=outstring.length-1; i++) {
temp = outstring[i].split(',');

}

Once the for loop will finish doing it, I want temp array to be null
or blank.
How Can I do that?
I tried doing temp.length =0 but that didn't work.
temp=[];
Oct 8 '08 #2
On 2008-10-08 16:10, Sunny wrote:
Hi, Can someone tell me, How to redefine array or make array empty or
null.

Here what I am trying to do.
var temp = new Array();
for(i=0; i <=outstring.length-1; i++) {
temp = outstring[i].split(',');
}
I assume you're doing something else in the loop too, or this would be
pretty pointless.

First of all, you don't need

var temp = new Array();

because you'll immediately assign something else to temp in the loop.

var temp;

will do. By the way, if you do want to create an empty array, use an
array literal:

var temp = []; // unless see below[*]
Once the for loop will finish doing it, I want temp array to be null
or blank.
Why? Just let it go out of scope, and it will be garbage collected
(unless there are closures present).
How Can I do that?
I tried doing temp.length =0 but that didn't work.
Are you really sure about that?
How didn't it work?

Alternatively, you could also use the delete operator, or you could
assign something else to temp, if you want, like null or [].
- Conrad

[*] That is, unless you're going push() a lot of elements on the array,
and you know the final number in advance; then it's more efficient to
use "new Array(num_elements)". I'm not exactly sure why that is, because
the implementations don't reserve memory in advance; maybe it's that the
..length property doesn't change after each push().
Oct 8 '08 #3
On Oct 9, 12:42*am, Conrad Lender <crlen...@yahoo.comwrote:
[...]
>
* var temp = []; * // unless see below[*]
[...]
>[*] That is, unless you're going push() a lot of elements on the array,
and you know the final number in advance; then it's more efficient to
use "new Array(num_elements)". I'm not exactly sure why that is, because
the implementations don't reserve memory in advance; maybe it's that the
.length property doesn't change after each push().
Have you compared that to using a while loop? e.g.

var t = [];
var i = array.length;

while (i--) {
t.push(array[i]);
}

That should only set length once too, but I imagine the internal
[[put]] method must still check whether length needs to be
incremented, even if it doesn't have to actually do it.
--
Rob
Oct 9 '08 #4
On Oct 8, 7:42*pm, Conrad Lender <crlen...@yahoo.comwrote:
On 2008-10-08 16:10, Sunny wrote:
Hi, Can someone tell me, How to redefine array or make array empty or
null.
Here what I am trying to do.
var temp = new Array();
for(i=0; i <=outstring.length-1; i++) {
temp = outstring[i].split(',');
}

I assume you're doing something else in the loop too, or this would be
pretty pointless.

First of all, you don't need

* var temp = new Array();

because you'll immediately assign something else to temp in the loop.

* var temp;

will do. By the way, if you do want to create an empty array, use an
array literal:

* var temp = []; * // unless see below[*]
Once the for loop will finish doing it, I want temp array to be null
or blank.

Why? Just let it go out of scope, and it will be garbage collected
(unless there are closures present).
How Can I do that?
I tried doing temp.length =0 but that didn't work.

Are you really sure about that?
How didn't it work?

Alternatively, you could also use the delete operator, or you could
assign something else to temp, if you want, like null or [].

* - Conrad
[*] That is, unless you're going push() a lot of elements on the array,
and you know the final number in advance; then it's more efficient to
use "new Array(num_elements)". I'm not exactly sure why that is, because
the implementations don't reserve memory in advance; maybe it's that the
.length property doesn't change after each push().
IMO, memory is reserved for the data structure which is responsible
for maintaining the state of the Array object; it can be an Object[]
of Java or an array of void pointers in C. The advantage AFAIK here is
that setting the 'length' property avoids a lot of copying of
references to and fro when inserting an element since each time the
backing data store has to be expanded to take in the new element i.e.
ensureCapacity does nothing as long as the number of elements
sequentially inserted is less than the specified length.

Even I think that setting the length property to 0 should have done
the job though setting it to null or just letting it go out of scope
of more convenient and processing friendly [since setting the length
or deleting actually loops over the array elements].
Oct 9 '08 #5
On Wed, 8 Oct 2008 at 22:53:26, in comp.lang.javascript, sasuke wrote:

<snip>
>IMO, memory is reserved for the data structure which is responsible
for maintaining the state of the Array object; it can be an Object[]
of Java or an array of void pointers in C. The advantage AFAIK here is
that setting the 'length' property avoids a lot of copying of
references to and fro when inserting an element since each time the
backing data store has to be expanded to take in the new element i.e.
ensureCapacity does nothing as long as the number of elements
sequentially inserted is less than the specified length.
It can't be as simple as that. Try putting this into the address bar and
executing it :

javascript: var a1 = new Array(); a1[2000000000] = "Wow"; alert(a1.length);

It doesn't blow up. Neither does this :

javascript: var a1 = new Array(2000000000); alert(a1.length );

>Even I think that setting the length property to 0 should have done
the job though setting it to null or just letting it go out of scope
of more convenient and processing friendly [since setting the length
or deleting actually loops over the array elements].
According to ECMA 262, setting the length to zero should indeed do the job :

"whenever the length property is changed, every property whose
name is an array index whose value is not smaller than the new length is
automatically deleted."

As you say, replacing the variable's value by a new array or null will also do
the job. Whether it is quicker depends on how the garbage collector works.

John
--
John Harris
Oct 9 '08 #6
John G Harris wrote:
On Wed, 8 Oct 2008 at 22:53:26, in comp.lang.javascript, sasuke wrote:

ECMAScript does not have real arrays. Arrays are objects.
>
It can't be as simple as that. Try putting this into the address bar and
executing it :

javascript: var a1 = new Array(); a1[2000000000] = "Wow"; alert(a1.length);
That creates a new Array with two properties: 2000000000 and length.

2000000000 = "Wow"
length = 2000000001
It doesn't blow up. Neither does this :

javascript: var a1 = new Array(2000000000); alert(a1.length );

That creates a new Array with one property: length.

Firefox <= 3.0.3 exhibits a bug where an array is 'prefilled' with
properties having undefined values.

javascript:alert('2' in [,,,,,,,,,,])

true in firefox 3.0.3

(should be false).
Garrett
>
John
Oct 10 '08 #7
sasuke wrote:
[...] Though there is no mention of such in the specification, almost all
implementations have a `sparse' or `dense' flag which is used to mark the
Array object. This flag demands a suitable processing on part of the
implementation when a high value of index is used; which explains your
first e.g. [...]
How do you got *that* idea?
As for the second e.g., try something like javascript: var a1 = new
Array(2000000000); for(var i = 0, maxI = a1.length; i < maxI; ++i) {
a1[i] = Number(i); }

The script stops responding, doesn't it?
Responding to what?
This gives us an indication that the implementation is smart enough to
allocate memory to the Array object when it actually is required [maybe
the length passed to the Array constructor isn't used till a reference to
a particular location isn't made].
Your logic is flawed. The *user agent* stops responding (and may show the
user a dialog that allows them to stop execution of the script) because the
script is running quite a long time and all known ECMAScript implementations
are single-threaded. It is completely irrelevant that an Array object is
involved here. Simple proof:

while (true);
PointedEars
--
Use any version of Microsoft Frontpage to create your site.
(This won't prevent people from viewing your source, but no one
will want to steal it.)
-- from <http://www.vortex-webdesign.com/help/hidesource.htm>
Oct 10 '08 #8
sasuke wrote:
Thomas 'PointedEars' Lahn wrote:
>sasuke wrote:
>>[...] Though there is no mention of such in the specification, almost all
implementations have a `sparse' or `dense' flag which is used to mark the
Array object. This flag demands a suitable processing on part of the
implementation when a high value of index is used; which explains your
first e.g. [...]
How do you got *that* idea?

When sifting through the source code of Rhino; the Java implementation
of ECMAScript. The NativeArray class maintains a flag called
'denseOnly'.
While that is interesting, this is but one implementation, the wrong one for
the discussed example (we are talking SpiderMonkey and friends in this
thread), and it does not explain the example (whereas it is unclear what
exactly needed explaining there).
PointedEars
--
realism: HTML 4.01 Strict
evangelism: XHTML 1.0 Strict
madness: XHTML 1.1 as application/xhtml+xml
-- Bjoern Hoehrmann
Oct 11 '08 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: LRW | last post by:
I did a Web search, and a deja.com search on this...and I'm finding how to make checkboxes act like radiobuttons, and other interesting behaviors, but nothing that quite answers my question. If...
5
by: Denis Perelyubskiy | last post by:
Hello, I need to make an array of elements accross forms. My javascript skills, as evident from this question, are rather rudimentary. I tried to make an associative array and index it with...
8
by: Gustaf Liljegren | last post by:
I'd like a simple way of extracting everything that's not whitespace on each line in a file. For example, if the program encounters this line 1 2\t\t3 \t\t4 I want a string array like this ...
1
by: ad | last post by:
I select a single field from a table of database, like: Select distinct EmployeeID from Employee. Have there any convenient to throw the result of select items into a static array? or I must...
9
by: Steve | last post by:
Hello, I created a structure ABC and an array of type ABC Public Structure ABC Dim str1 As String Dim int1 As Integer End Structure Public ABC1 As New ABC, ABC2 As New ABC
1
by: kalyancvns | last post by:
as per the books array list is synchronized by using the method like Collections.SynchronizedList(), can any body give an example how to use this method?
22
by: bela | last post by:
Hello, I am very new to JAVA. I would like to know, how to read *.csv file from java and how to save that data into an array. regards, bela
3
by: raylopez99 | last post by:
I suspect the answer to this question is that it's impossible, but how do I make the below code work, at the point where it breaks (marked below). See error CS0411 This is the complete code. ...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.