HealthSamurai/jute.clj

Priority of ! negation operator

Opened this issue · 2 comments

I encountered to the bug with unobvious priority of negation operator, please take a look

example:
  b: $ (!true) && false # => false
  c: $ !true && false # => true

It will lead to issues for everyone

In js:

(!true) && false // false
!true && false // false

Any updates here?