I found the following short and tricky codes on

Double bitwise NOT (~~) - James Padolsey
http://james.padolsey.com/javascript/double-bitwise-not/

Web Reflection: Two simple tricks in JavaScript ( olds, but always useful )
http://webreflection.blogspot.com/2008/06/two-simple-tricks-in-javascript-olds.html


double bitwise not

Math.round(v) === ~~v

Math.floor(v) === ~~v (if v > 0)

isNaN(Number(v)) ? 0 : Number(v) === ~~v(if v is not float)


double not

Boolean(v) === !!v

(!Boolean(v) === !v)

bitwise shift

Math.round(v / 2) === v >> 1

Math.round(v) === v >> 0


single bitwise not

a.indexOf(v) !== -1 === ~a.indexOf(v)


Are there more short or tricky codes in javascript?

link|improve this question

What are you after by using these tricks? I suggest you stay close to the Ecmascript standard. Some of the tricks are possible in Ecmascript. – mozillanerd May 23 '11 at 4:12
~~v can not be equivalent to both Math.round(v) and Math.floor(v), given that round() and floor() do not do the same thing. But even assuming it is equivalent to one or the other Math function using the ~~ shortcut just makes your code harder to read. Do you think somebody else reading that code will automatically understand that Math.floor() was the intended effect? – nnnnnn May 23 '11 at 5:18
thanks your comments. i just wanna make my codes tricky(but simple and cross-browser-compatible). its fun to write code freely. but this is difficult problem. if you know what ~~, !! or ~-1 means, both readability and writabliity of the codes are better than the normal ways. is it impossible that every javascript programer knows these tricks like every programer knows &&, !, ++, and etc? – js_ May 23 '11 at 5:49
@mozillanerd which ones are incomaptible with the Ecmascript standard? – js_ May 23 '11 at 5:58
None of them. – Tim Down May 23 '11 at 8:55
feedback

1 Answer

up vote 1 down vote accepted

These "tricks" are not specific to Javascript. A simple search on Google will return a number of pages offering tricks similar.

http://resnet.uoregon.edu/~gurney_j/jmpc/bitwise.html

http://lab.polygonal.de/2007/05/10/bitwise-gems-fast-integer-math/

http://www.beyond3d.com/content/articles/8/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.