Last active
November 15, 2020 21:50
-
-
Save inezabonte/5cdc4945dc2df9ccc60301bbe45fab48 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function hello(name = 'George'){ | |
console.log(`Hello ${name}`) | |
} | |
hello() | |
// Output: => "Hello George" | |
// Because "George" is the default set name in the parameters | |
hello('Stacy') | |
// Output: => "Hello Stacy" | |
// Because "Stacy" is provided in the arguments |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment