marclundgren
2/5/2014 - 1:36 AM

javascript-order-of-operations.md

##Javascript order of operations

*
       /
       %

          +
          -
          <<
          >>
          >>>

               <
               >
               <=
               >=
               instanceof
               in

                          ==
                          !=
                          ===
                          !==

                               &
                               ^
                               |

                                  &&
                                  ||

                                      ? :

                                           =
                                           *=
                                           /=
                                           %=
                                           +=
                                           -=
                                           <<=
                                           >>=
                                           >>>=
                                           &=
                                           ^=
                                           |=