Last active
October 5, 2016 21:14
-
-
Save wagnerdevel/db4d163ca117c444287ec268bc03fdee to your computer and use it in GitHub Desktop.
array-1
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
| var palavras = ["URI", "SI"]; | |
| palavras.push("CC"); // adiciona a string "CC" | |
| //Também é possível guardar valores de tipos diferentes: | |
| var variosTipos = ["URI", 10, [1,2]]; | |
| //Acessar elementos | |
| console.log(palavras[2]); | |
| console.log(palavras.length); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment