- Notifications
You must be signed in to change notification settings - Fork3.9k
Add new toSorted, toSpliced and toReversed methods to "Array methods" article#3622
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:master
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
damonholden commentedFeb 8, 2024
yeah lets get this updated. Also worth mentioning the |
Would you be interested in opening a PR for this after this one gets merged (will be soon)? 🙂 |
damonholden commentedFeb 14, 2024
Sounds good. Once merged, I'll work on the PR to get the other methods in and adjust the tasks as well. Will keep an eye out. |
Uh oh!
There was an error while loading.Please reload this page.
This pull request introduces additional notes to the documentation of Array methods. The aim is to inform readers about new methods that perform similar operations to
splice
,sort
, andreverse
, but do not mutate the original array. These methods aretoSpliced
,toSorted
, andtoReversed
.