Skip to content

Instantly share code, notes, and snippets.

@Albertbol
Last active March 7, 2021 19:08
Show Gist options
  • Save Albertbol/f6100ffe22e2421412a0d4e7c32d263d to your computer and use it in GitHub Desktop.
Save Albertbol/f6100ffe22e2421412a0d4e7c32d263d to your computer and use it in GitHub Desktop.
selection() {
let index = 0
let random = Math.random()
while (random > 0) {
random = random - population[index].powRate
index++
}
index-- // index++ jumped to the next phrase
return population[index]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment