const arrayTest = [1,2,3,4]; arrayTest.toReversed(); // [4,3,2,1] arrayTest.toSorted(); // [1,2,3,4] arrayTest.toSpliced(1,2); // [1,4] arrayTest.with(1,'##'); [1,'##',3,4];