Last active
May 16, 2017 07:27
-
-
Save isaaguilar/66fad8aea2799739963d375b8cadc219 to your computer and use it in GitHub Desktop.
"Uniques only" push to array in JavaScript ES6 (slow)
This file contains hidden or 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
const uniquePush = (arr, item) => { | |
if ( arr.indexOf(item) === -1) { | |
arr.push(item) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment