Hello,
what construction must i use that coffeescript compiles to:
if (property in object).
When i use the syntax:
if object?.property
it compiles to:
if (object != null ? object.property : void 0)
Anyone can help me?
Sorry my english isn’ the best.
Thank you.