-
-
Save yury/248a7df18a7a93443973629525f973ce to your computer and use it in GitHub Desktop.
Function for my uncle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Unic(array) { | |
array.filter((item, index, arr) => { | |
if(item == -1) { | |
arr.splice(item) | |
arr.unshift(item) | |
} | |
}) | |
return array | |
} | |
console.log(Unic([1,1,1,1,-1,-1,-1, -1, 1])) | |
// Вернет данный результат [-1, -1, -1, -1, -1,1, 1, 1, 1] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment