Skip to content

Instantly share code, notes, and snippets.

@constdrop
Created March 23, 2016 14:15
Show Gist options
  • Select an option

  • Save constdrop/9ff328789a0ded771ad9 to your computer and use it in GitHub Desktop.

Select an option

Save constdrop/9ff328789a0ded771ad9 to your computer and use it in GitHub Desktop.
javascript hash total one liner.
hash = { a: 1, b: 2, c: 3 };
total = $.map(hash, function(v, k){return v;}).reduce(function(x, y){return x + y;});
// => 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment