Created
June 21, 2015 04:25
-
-
Save Renatodeluna/0790f349383401d97c31 to your computer and use it in GitHub Desktop.
Create array random
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 array = [ 'Bom Dia', 'Boa Noite', 'Boa Tarde'], | |
posicao = Math.floor(array.length * Math.random()), | |
texto = array[posicao]; | |
console.log(texto); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment