In the JavaScript array there is not any in-built replace() methods for replacing elements but we can implement replace() method by using the in-built splice() method. We have already discussed the splice() method in our JavaScript array tutorial.
JavaScript array replace element
In the JavaScript array there is not any in-built replace() methods for replacing elements but we can implement replace() method by using the in-built splice() method. We have already discussed the splice() method in our JavaScript array tutorial. For implementation of replace() method we have created a replace() method which takes three arguments as given below:
- arrayName: Array Object at which replacement is to be done.
- repalceTo: array element to which we have to replace in the array
- replaceWith: array element against which replacement is to be done
function replace(arrayName,replaceTo, replaceWith)
|
Above code is the function defined for implementing replace() method.
replace(arr,"Suman","Vineet"); Here we have passed "Vineet" to be replaced by the array element "Suman".
Full code of javascript_array_replace.html is as follows:
<html>
|
Output of the example is as follows: