Guest User

Untitled

a guest
Jun 22nd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. (!+[]+[]+![]).length
  2.  
  3. > (!+[]+[]+![]).length
  4. 9
  5.  
  6. +[] === 0
  7. !+[] === true
  8. !+[]+[] === "true"
  9. (!+[]+[])+![] === (!+[]+[])+false === "truefalse"
  10. "truefalse".length === 9
  11.  
  12. +[] ⟶ +"" ⟶ 0
  13.  
  14. !+[] ⟶ !0 ⟶ !false ⟶ true
  15.  
  16. !+[]+[] ⟶ true + [] ⟶ true + "" ⟶ "true"
  17.  
  18. ![] ⟶ !true ⟶ false
  19.  
  20. "true" + false ⟶ "truefalse"
Add Comment
Please, Sign In to add comment