Bitwise operations: Difference between revisions

(→‎{{header|REXX}}: moved the REXX entry to its proper place alphabetically. -- ~~~~)
Line 914:
 
=={{header|JavaScript}}==
There are no integers in Javascript, but there are still bitwise operators. They will convert their number operands into integers before performing they task. In other languages, these operators are very close to the hardware and very fast. In JavaScript, they are very far from the hardware and very slow and rarely used.
 
<lang javascript>function bitwise(a, b){
Anonymous user