Skip to content

Instantly share code, notes, and snippets.

@wagnerdevel
Last active October 5, 2016 21:14
Show Gist options
  • Select an option

  • Save wagnerdevel/db4d163ca117c444287ec268bc03fdee to your computer and use it in GitHub Desktop.

Select an option

Save wagnerdevel/db4d163ca117c444287ec268bc03fdee to your computer and use it in GitHub Desktop.
array-1
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