Skip to content

Instantly share code, notes, and snippets.

@leandromoreira
Created January 13, 2016 01:06
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save leandromoreira/b4b1b65ffb6968486383 to your computer and use it in GitHub Desktop.
var print = (list) => {
list.forEach((number) => console.log(`Hello, ${number}`))
}
print([1,2,3])
print(["D","K","C"])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment