Skip to content

Instantly share code, notes, and snippets.

@smallpaes
Created June 16, 2019 10:47
Show Gist options
  • Save smallpaes/3416e850a2440c7ae313b49a29c3c51e to your computer and use it in GitHub Desktop.
Save smallpaes/3416e850a2440c7ae313b49a29c3c51e to your computer and use it in GitHub Desktop.
let lunch = 'Beef Noodle'
let dinner = 'Chicken Curry Rice'
let raining = true
if (raining) {
// 變數交換
[dinner, lunch] = [lunch, dinner]
}
console.log(`${lunch} -> ${dinner}`) //Chicken Curry Rice -> Beef Noodle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment