You are reading a single comment by @Frida and its replies. Click here to read the full conversation.
  • Is there a special precedence in Espruino to this:

    >8 | 7
    =15
    >8 | 7 & 1
    =1
    >1 & 7 | 8
    =9
    > 
    

    in go and in node.js it works either way:

    > 8 | 7
    15
    > 8 | 7 & 1
    9
    > 1 & 7 | 8
    9
    > 
    
About

Avatar for Frida @Frida started