Skip to content

Instantly share code, notes, and snippets.

@laser
Created December 31, 2014 18:26
Show Gist options
  • Save laser/af4035e98481b910f6ec to your computer and use it in GitHub Desktop.
Save laser/af4035e98481b910f6ec to your computer and use it in GitHub Desktop.
b
var results = [],
i = fruitsOfTheWorld.length,
j;
while (i--) {
results.unshift([]);
var j = fruitsOfTheWorld[i].length;
while (j--) {
results[0].unshift(capitalize(fruitsOfTheWorld[i][j]));
}
}
return results;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment