I was solving ES6: Mutate an Array Declared with const on freecodecamp.org.
The instruction told to use
s[0] = 2;
but I tested like this
s.sort();
and the test pasted. Than I looked the solution by camperbot but it isn’t same!
Not a problem but another solution found because of my curiosity
Want to know is that okay or something wrong with freecodecamp’s JS editor!