Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JavaScriptでBitAnd操作があるかどうか疑問に思っていましたか?それはありますか?オラクルのように。グーグルで見つけようとしましたが、見つかりませんでした。そのためのより良い関数があるかどうかを提案してください。
はい、そのような演算子があります:&。
&
var c = a & b;
詳細については、ビット演算子に関するそれぞれのMDNの記事を参照してください。