Created
July 26, 2017 02:17
-
-
Save oieioi/d9e8332d411318cbdf56ed180c6c640c to your computer and use it in GitHub Desktop.
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
Array.prototype.sample = (size = 1)-> | |
dup = @concat() | |
[0...size].map -> | |
randomNumber = (Math.floor(Math.random() * dup.length)) | |
dup.splice(randomNumber, 1)[0] | |
.filter (item)-> item | |
console.log [1,2,3,4,5].sample() | |
console.log [1,2,3,4,5].sample(3) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment