最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

node.js - what does `~` mean in javascript - Stack Overflow

programmeradmin1浏览0评论

I view the code of express, and see this code .js#L490

if ('all' == envs || ~envs.indexOf(this.settings.env)) fn.call(this);

what the ~ means before envs

I view the code of express, and see this code https://github./visionmedia/express/blob/master/lib/application.js#L490

if ('all' == envs || ~envs.indexOf(this.settings.env)) fn.call(this);

what the ~ means before envs

Share edited Nov 22, 2011 at 18:28 Kornel 100k38 gold badges232 silver badges322 bronze badges asked Nov 19, 2011 at 2:56 guilin 桂林guilin 桂林 17.4k30 gold badges96 silver badges148 bronze badges 1
  • 1 As indicated in the answers ~ is a bitwise not, so that code is checking whether the return from indexOf() is -1. In my opinion this is not a good practice because it is a "trick" that makes the code harder to read and maintain. – nnnnnn Commented Nov 19, 2011 at 3:22
Add a ment  | 

2 Answers 2

Reset to default 9

In case you were wondering why it is used in that situation, it is a shorthand for finding out if indexOf method found something.

indexOf returns -1 when it doesn't find something, and >= 0 when it does. So when you do ~-1 you get 0 (a falsy value) and when you do it on anything else you get a truthy value.

So:

if( ~str.indexOf( "something" ) ) {
...
}

Is a shorter way of saying

if( str.indexOf( "something" ) !== -1 ) {
...
}

If you are wondering how is -1 the NOT of 0, then read here

It's the Bitwise NOT operator:

https://developer.mozilla/en/JavaScript/Reference/Operators/Bitwise_Operators

发布评论

评论列表(0)

  1. 暂无评论