Skip to content

Instantly share code, notes, and snippets.

@cacheflow
Created November 1, 2015 15:51
Show Gist options
  • Save cacheflow/daf2b0d07f6e8e3c7a90 to your computer and use it in GitHub Desktop.
Save cacheflow/daf2b0d07f6e8e3c7a90 to your computer and use it in GitHub Desktop.
var names = ["Lex", "World", "Medium"];
var greetings = [];
for(var i = 0; i < names.length; i++) {
var sayHi = "Hello " + names[i];
greetings.push(sayHi);
};
console.log(greetings)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment