Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kevinchisholm/433427a4ee674bbcc3b08370748ac7e4 to your computer and use it in GitHub Desktop.
Save kevinchisholm/433427a4ee674bbcc3b08370748ac7e4 to your computer and use it in GitHub Desktop.
var foo = ["mon","tues","wed"];
foo.push("thurs");
console.dir(foo); // ["mon","tues","wed","thurs"]
foo[foo.length] = "thurs";
console.dir(foo); //["mon","tues","wed","thurs"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment