Movatterモバイル変換


[0]ホーム

URL:


  1. 開発者向けのウェブ技術
  2. JavaScript
  3. JavaScript リファレンス
  4. 式と演算子
  5. 左シフト代入演算子 (<<=)

このページはコミュニティーの尽力で英語から翻訳されました。MDN Web Docsコミュニティーについてもっと知り、仲間になるにはこちらから。

View in EnglishAlways switch to English

左シフト代入演算子 (<<=)

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015年7月⁩.

左シフト代入演算子 (<<=) は、 2 つのオペランドで左シフトを実行し、その結果を左オペランドに代入します。

試してみましょう

let a = 5; // 00000000000000000000000000000101a <<= 2; // 00000000000000000000000000010100console.log(a);// 予想される結果: 20

構文

js
x <<= y

解説

x <<= yx = x << y と同等ですが、式x が一度だけ評価される点が異なります。

左シフト代入演算子の使用

js
let a = 5;// 00000000000000000000000000000101a <<= 2; // 20// 00000000000000000000000000010100let b = 5n;b <<= 2n; // 20n

仕様書

Specification
ECMAScript® 2026 Language Specification
# sec-assignment-operators

ブラウザーの互換性

関連情報

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp