Skip to content

Instantly share code, notes, and snippets.

@weslleyaraujo
Created January 27, 2014 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weslleyaraujo/8656477 to your computer and use it in GitHub Desktop.
Save weslleyaraujo/8656477 to your computer and use it in GitHub Desktop.
var users = [
'yellow',
'green',
'pink',
'blue'
];
var sepa = [];
for (var i in users) {
for(var a in users) {
sepa.push({
first: users[a],
second: users[i]
});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment