Quantcast
Viewing all articles
Browse latest Browse all 6

existentiell operator posted by Achim @ Sat, 11 Feb 2012 21:49:36 +0000

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.


Viewing all articles
Browse latest Browse all 6

Trending Articles