Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. console.log(1 + "2" + "2");
  2. console.log(1 + +"2" + "2");
  3. console.log(1 + -"1" + "2");
  4. console.log(+"1" + "1" + "2");
  5. console.log( "A" - "B" + "2");
  6. console.log( "A" - "B" + 2);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement