Created
July 7, 2016 13:15
-
-
Save romuleald/62abc6bd1e2f5bb96d23c6fedcfeb82e to your computer and use it in GitHub Desktop.
Count unique item in array
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
var countItems = function (_array) { | |
return Array.from(new Set(_array)).length; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment