Created
June 5, 2014 03:04
-
-
Save paulmand3l/7ee0179aec11bd570b8c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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