• Just array

    Small example with array

    let a = 0;
    
    a+=+!![]; // a = 1
    WAT?
  • 🤣 😂

    Emojis in code? Why not?

    let a = 0;
    
    a += '🤣'.charCodeAt(0)-'😂'.charCodeAt(0) // a = 1
    WAT?
  • Reduce something

    This getting out of hand. Now there are two three variables!

    let a = 0;
    
    a = a + (""+(""+a[a])[2].charCodeAt()).split("").reduce((b,c) => +b + +c) // a = 1
    WAT?
  • Division?

    Just another math stuff:

    let a = 0;
    
    a += !(a[a]/a[a]==a[a]/a[a]) // a = 1
    WAT?
  • Wrong "Math"

    Looks like today math wouldn’t be on our side:

    let a = 0;
    
    a += "-1" < "-2" // a = 1
    WAT?