Small Proposal "!in"

T.J. Crowder tj.crowder at farsightsoftware.com
Thu Jun 28 16:18:50 UTC 2018


On Thu, Jun 28, 2018 at 5:14 PM, Tobias Buschor <tobias.buschor at shwups.ch>
wrote:
> I dont like to write:
> if ( !('x' in obj) &&  !('y' in obj) ) {
>      doit()
> }
>
> I was even tempted to write it that way:
> if ('x' in obj  ||  'y' in obj) { } else {
>      doit()
> }

There's

```js
if (!('x' in obj  ||  'y' in obj)) {
     doit()
}
```

That said, I've wanted !in many a time, in a minor sort of way...

-- T.J. Crowder
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20180628/73760c49/attachment.html>


More information about the es-discuss mailing list