Skip to content

Instantly share code, notes, and snippets.

@gkhays
Last active November 30, 2017 04:07
Show Gist options
  • Save gkhays/c31a73696f5e3516358f12cf265fed82 to your computer and use it in GitHub Desktop.
Save gkhays/c31a73696f5e3516358f12cf265fed82 to your computer and use it in GitHub Desktop.

JavaScript Snippets

When I move away from JavaScript, I forget these after a while and always have to refresh my memory.

// Enumerate the keys in an object.
function enumKeys(obj) {
  Object.keys(obj).forEach(function(key) {
    console.log(obj[key]);
  });
}
// Enumerate the keys in an object.
function enumKeys(obj) {
Object.keys(obj).forEach(function(key) {
console.log(obj[key]);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment