|
|
Slice to collect elements of an arrayBy using slice method we can collect a part of the array. Using slice we can specify were to start and by using another optional argument we can pass to tell where to end.
array.slice(start, [end]);
If we don't specify the start value then splice will start returning from 0 element or first element.
The second argument end is optional and if we don't specify then all elements staring from start till the end of the array will be returned.
Here is our example
<script type="text/javascript">
var names=new Array();
names[0] = "John";
names[1] = "Mike";
names[2] = "Rose";
names[3] = "Steve";
names[4] = "Rabin";
document.write(names.slice(0,3));
</script>
The output of above code will be
John,Mike,Rose
We can get elements from a position till end like this.
document.write(names.slice(3));
The output of the above code is
Steve,Rabin
Found anything wrong or wants to improve the code by adding more features? Post your short comment here or use the Forum
|
| | | sophal | 25-10-2010 |
|---|
| how to write code to defend user input only number in java script? |
|
|
|
|
|
|