Skip to content

Instantly share code, notes, and snippets.

@emkay
Created November 14, 2011 04:33
Show Gist options
  • Save emkay/1363240 to your computer and use it in GitHub Desktop.
Save emkay/1363240 to your computer and use it in GitHub Desktop.
Array Methods
var a = []; // empty array
a.push('a', 'b', 'c', 'd', 'e'); // ["a", "b", "c", "d", "e"]
a.pop(); // ["a", "b", "c", "d"]
a.reverse(); // ["d", "c", "b", "a"]
var s = a.join('');
console.log(s); // dcba
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment