Guest User

Untitled

a guest
Apr 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. a = null || "foo";
  2. b = "foo" || "something else";
  3.  
  4. a; // => "foo"
  5. b; // => "foo"
Add Comment
Please, Sign In to add comment