Skip to content

Instantly share code, notes, and snippets.

@KaduNovoK
Last active August 29, 2015 14:00
Show Gist options
  • Save KaduNovoK/d3662a57b748d2e13096 to your computer and use it in GitHub Desktop.
Save KaduNovoK/d3662a57b748d2e13096 to your computer and use it in GitHub Desktop.
var teams = [1, 2, 3, 4, 5, 6, 7, 8, 9];
teams.forEach(function(value1, idx1) {
teams.forEach(function(value2, idx2) {
if (idx2+1 > idx1+1) {
console.log(value1, value2)
}
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment