Skip to content

Instantly share code, notes, and snippets.

@QuocCao-dev
Created September 25, 2022 08:05
Show Gist options
  • Save QuocCao-dev/e325c57332fbee1dbd7bb1030a7ef751 to your computer and use it in GitHub Desktop.
Save QuocCao-dev/e325c57332fbee1dbd7bb1030a7ef751 to your computer and use it in GitHub Desktop.
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