slice () Method का use किसी array से कुछ selected element को return कराकर उनसे एक new array बनाने के लिए किया जाता है .
Example : var a = ["Ramesh", "Suresh", "Ganesh", "Mahesh"]
यहाँ मान लीजिये की हमें "Suresh", "Ganesh" के value use करके एक नया array बनाना है। तो इसके लिए हम Array a का index[1] और index [3 ] का use करेंगे |
मतलब की a.slice(1,3) type से Code को लिखेंगे
<script>
var a = ["Ramesh", "Suresh", "Ganesh", "Mahesh"];
document.write("<b>Before Medhod : </b>"+a+"<br>")
var b = a.slice(1,3);
document.write("<b>After Medhod : </b>"+b)
</script>