JavaScript Example (Program)
Learn Details

Q. Where do use fill () method ?

fill () method का उसे किसी array के सारे value को किसी new value से replace करने के लिए करते हैं

array_name.fill ("replace_Value"])

  • Program Example


    <script> //prog 1
                               var a = ["Ram", "Shyam", "Ganesh"]
                               var b = a.fill("Rohit")
                               document.write(b);
                               
    </script>
    Out Put : Ram,Shyam,Ganesh
    Data Type : Rohit,Rohit,Rohit