Skip to content

Instantly share code, notes, and snippets.

@founddrama
Last active December 23, 2015 02:29
Show Gist options
  • Save founddrama/6567007 to your computer and use it in GitHub Desktop.
Save founddrama/6567007 to your computer and use it in GitHub Desktop.
GDI class #1 meditation blog post thingy
var favoriteThings = ['coffee', 'kittens', 'bacon sandwiches'];
var out;
for (var i = 0; i < favoriteThings.length; i++) {
out += favoriteThings[i] + ', ';
}
console.log('My favorite things are: ' + out);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment