Skip to content

Instantly share code, notes, and snippets.

@santosh79
Created February 5, 2015 20:01
Show Gist options
  • Save santosh79/c01d4b33aad6b9face93 to your computer and use it in GitHub Desktop.
Save santosh79/c01d4b33aad6b9face93 to your computer and use it in GitHub Desktop.
function stack() {
return [];
}
function add(stack, item) {
stack.push(item);
}
function pop(stack) {
return stack.pop();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment