DEV Community

Discussion on: JavaScript array methods: Mutator VS Non-mutator and the returning value

 
fetishlace profile image
fetishlace

You have to reassign e.g. arr = arr.map(x=>x**x), since arr.map(x=>x*x) won't change arr itself, it is new array, same as .filter.