Skip to content

Instantly share code, notes, and snippets.

@manakuro
Created February 24, 2020 23:22
Show Gist options
  • Save manakuro/d817b16ac48beeb583436435f1b76912 to your computer and use it in GitHub Desktop.
Save manakuro/d817b16ac48beeb583436435f1b76912 to your computer and use it in GitHub Desktop.
let a
let b = 'foo'
a ||= b // a -> 'foo'
let c = 'bar'
let d = 'ddd'
c &&= d // c -> 'ddd'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment