Skip to content

Instantly share code, notes, and snippets.

@paulmand3l
Created June 5, 2014 03:04
Show Gist options
  • Save paulmand3l/7ee0179aec11bd570b8c to your computer and use it in GitHub Desktop.
Save paulmand3l/7ee0179aec11bd570b8c to your computer and use it in GitHub Desktop.
var a = [1, 2, 3, 4, 5];
var b = [6, 7, 8, 9, 0];
a.forEach(function(var) {
b.forEach(function(val) {
console.log(var + val);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment