Skip to content

Instantly share code, notes, and snippets.

@mooz
Created February 23, 2010 04:09
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 mooz/311844 to your computer and use it in GitHub Desktop.
Save mooz/311844 to your computer and use it in GitHub Desktop.
js> a = [1, 2, 3, 4 ,5];
1,2,3,4,5
js> b = ['a', 'b', 'c', 'd' ,'e'];
a,b,c,d,e
js> [_a + _b for each (_a in a) for each (_b in b)]
1a,1b,1c,1d,1e,2a,2b,2c,2d,2e,3a,3b,3c,3d,3e,4a,4b,4c,4d,4e,5a,5b,5c,5d,5e
js>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment