-
-
Save QuocCao-dev/e325c57332fbee1dbd7bb1030a7ef751 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
| const getLocation = (city, country = "Italy", continent = "Europe") => | |
| console.log(continent, country, city); | |
| getLocation("Milan"); | |
| // Europe Italy Milan | |
| getLocation("Paris", "France"); | |
| // Europe France Paris | |
| getLocation('Milan') | |
| // Europe Italy Milan | |
| getLocation('Paris','France') | |
| // Europe France Paris |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment