RESSA icon indicating copy to clipboard operation
RESSA copied to clipboard

ES2020 Operators support

Open Fee0 opened this issue 1 year ago • 7 comments

I would like to have support for the operators coming with ES2020 (https://www.w3schools.com/jS/js_2020.asp):

  • The Nullish Coalescing Operator (??)
  • The Optional Chaining Operator (?.)
  • Logical AND Assignment Operator (&&=)
  • Logical OR Assignment (||=)
  • Nullish Coalescing Assignment (??=)

Any hints how to implement them are very welcome. I probably start with the Logical AND / OR as these seem more simple to me.

Fee0 avatar Jan 29 '24 15:01 Fee0