Skip to content

Instantly share code, notes, and snippets.

@josescasanova
Created February 7, 2016 01:37
Show Gist options
  • Save josescasanova/7b5918c77437eda5b695 to your computer and use it in GitHub Desktop.
Save josescasanova/7b5918c77437eda5b695 to your computer and use it in GitHub Desktop.
function hello(name, age) {
alert("Hello "+name+", you’re "+age+" years old!");
}
hello("Anon", 42); // "hello Anon, you’re 42 years old!"
hello("Baptiste"); // "hello Baptiste, you’re undefined years old!"
hello("Bulat", 24, 42); // "hello Bulat, you’re 24 years old!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment