I understand how the concat method works, but I had one question about a line in the MDN docs.
It says:
The
concatmethods does not alterthisor any of the arrays provided as arguments but instead returns a shallow copy that contains copies of the same elements combined from the original arrays.
My questions is, how is it possible for it to potentially alter the this? Is it saying that the argument arrays could potentially lose their this but instead it preserves it since it's simply creating a new array?