Displaying Arrays from set index.
Hi, if I have the following code:
- <br />
- <script>
- nme = [1,3,4,1,8, 7];
- alert(nme);
- </script>
The alert box displays - 1,3,4,1,8,7.
Is it possible to have the alert box display without the first array being shown so it would just show 3,4,1,8,7?
Thanks in advance.