JavaScript Example (Program)
Learn Details

Q. Where do use shift() method ?

जिस किसी array की first element को remove या delete करना हो , तब shift method का use करते हैं

ArrayName.shift()

  • Example


    <script>
    var a= ["Abble", "Ball", "Cat"];
    document.write("<b> Before Medhod : </b>" +  a+"<br>");
    a.shift();
    document.write("<b> After Medhod : </b>" +  a);
       
    </script>
    Out Put : Before Medhod : Abble,Ball,Cat
    After Medhod : Ball,Cat