500
The code that builds the array 0,1,2,3,4,5,6,7,8,9 one element at a time, then strips out the comma delimiters, and then displays the result in an alert window.
What is the following?
result = [];
for (i = 0; i <= 9; i++)
{
result[i] = i;
}
alert(result.join(""));