diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-09-26 18:58:11 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2021-10-08 02:02:05 +0900 |
commit | 608cfd0acc920881626620149b58f52a425fc6a2 (patch) | |
tree | 4a68abcf15e7b924c60edfd2a9350d5b8169cec6 /files | |
parent | ab327dabace4d52fc993108f23da42466a6a0296 (diff) | |
download | translated-content-608cfd0acc920881626620149b58f52a425fc6a2.tar.gz translated-content-608cfd0acc920881626620149b58f52a425fc6a2.tar.bz2 translated-content-608cfd0acc920881626620149b58f52a425fc6a2.zip |
インクリメント・デクリメント演算子を更新
- 2021/07/21 時点の英語版に同期
Diffstat (limited to 'files')
-rw-r--r-- | files/ja/web/javascript/reference/operators/decrement/index.md | 88 | ||||
-rw-r--r-- | files/ja/web/javascript/reference/operators/increment/index.md | 80 |
2 files changed, 73 insertions, 95 deletions
diff --git a/files/ja/web/javascript/reference/operators/decrement/index.md b/files/ja/web/javascript/reference/operators/decrement/index.md index f5e63fd791..3f7348ea6d 100644 --- a/files/ja/web/javascript/reference/operators/decrement/index.md +++ b/files/ja/web/javascript/reference/operators/decrement/index.md @@ -2,82 +2,70 @@ title: デクリメント (--) slug: Web/JavaScript/Reference/Operators/Decrement tags: - - Decrement + - デクリメント - JavaScript - - Language feature - - Operator + - 言語機能 + - 演算子 +browser-compat: javascript.operators.decrement translation_of: Web/JavaScript/Reference/Operators/Decrement --- -<div>{{jsSidebar("Operators")}}</div> +{{jsSidebar("Operators")}} -<p>デクリメント演算子 (<code>--</code>) は、オペランドをデクリメント (1を減算) して値を返します。</p> +デクリメント演算子 (`--`) は、オペランドをデクリメント (1 を減算) して値を返します。 -<div>{{EmbedInteractiveExample("pages/js/expressions-decrement.html")}}</div> +{{EmbedInteractiveExample("pages/js/expressions-decrement.html")}} -<div></div> +## 構文 +```js +x-- +--x +``` +## 解説 -<h2 id="構文">構文</h2> +オペランドに後置で演算子を付けると (例えば `x--`)、デクリメント演算子はデクリメントしますが、デクリメント前の値を返します。 -<pre class="syntaxbox notranslate"><strong>Operator:</strong> <var>x</var>-- or --<var>x</var> -</pre> +オペランドに前置で演算子を付けると (例えば `--x`)、デクリメント演算子はデクリメントし、デクリメント後の値を返します。 -<h2 id="解説">解説</h2> +## 例 -<p>オペランドに後置で演算子を付けると (例えば <code><var>x</var>--</code>)、デクリメント演算子はデクリメントしますが、デクリメント前の値を返します。</p> +### 後置デクリメント -<p>オペランドに前置で演算子を付けると (例えば <code>--<var>x</var></code>)、デクリメント演算子はデクリメントし、デクリメント後の値を返します。</p> - -<h2 id="例">例</h2> - -<h3 id="後置デクリメント">後置デクリメント</h3> - -<pre class="brush: js notranslate">let x = 3; +```js +let x = 3; y = x--; // y = 3 // x = 2 -</pre> +``` -<h3 id="前置デクリメント">前置デクリメント</h3> +### 前置デクリメント -<pre class="brush: js notranslate">let a = 2; +```js +let a = 2; b = --a; // a = 1 // b = 1 -</pre> - -<h2 id="仕様">仕様</h2> - -<table class="standard-table"> - <tbody> - <tr> - <th scope="col">仕様</th> - </tr> - <tr> - <td>{{SpecName('ESDraft', '#sec-postfix-decrement-operator', 'Decrement operator')}}</td> - </tr> - </tbody> -</table> +``` -<h2 id="ブラウザーの互換性">ブラウザーの互換性</h2> +## 仕様書 +{{Specifications}} +## ブラウザーの互換性 -<p>{{Compat("javascript.operators.decrement")}}</p> +{{Compat}} -<h2 id="関連項目">関連項目</h2> +## 関連情報 -<ul> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Addition">加算演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Subtraction">減算演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Multiplication">乗算演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Division">除算演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Remainder">剰余演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Exponentiation">べき乗演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Increment">インクリメント演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Unary_negation">単項マイナス演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Unary_plus">単項プラス演算子</a></li> -</ul> +- [加算演算子](/ja/docs/Web/JavaScript/Reference/Operators/Addition) +- [減算演算子](/ja/docs/Web/JavaScript/Reference/Operators/Subtraction) +- [除算演算子](/ja/docs/Web/JavaScript/Reference/Operators/Division) +- [乗算演算子](/ja/docs/Web/JavaScript/Reference/Operators/Multiplication) +- [剰余演算子](/ja/docs/Web/JavaScript/Reference/Operators/Remainder) +- [べき乗演算子](/ja/docs/Web/JavaScript/Reference/Operators/Exponentiation) +- [インクリメント演算子](/ja/docs/Web/JavaScript/Reference/Operators/Increment) +- [単項マイナス演算子](/ja/docs/Web/JavaScript/Reference/Operators/Unary_negation) +- [単項プラス演算子](/ja/docs/Web/JavaScript/Reference/Operators/Unary_plus) diff --git a/files/ja/web/javascript/reference/operators/increment/index.md b/files/ja/web/javascript/reference/operators/increment/index.md index 8cbb2486a8..3c3c712463 100644 --- a/files/ja/web/javascript/reference/operators/increment/index.md +++ b/files/ja/web/javascript/reference/operators/increment/index.md @@ -6,76 +6,66 @@ tags: - Language feature - Operator - Reference +browser-compat: javascript.operators.increment translation_of: Web/JavaScript/Reference/Operators/Increment --- -<div>{{jsSidebar("Operators")}}</div> +{{jsSidebar("Operators")}} -<p>インクリメント演算子 (<code>++</code>) は、オペランドをインクリメント (1を加算) して値を返します。</p> +インクリメント演算子 (`++`) は、オペランドをインクリメント (1 を加算) して値を返します。 -<div>{{EmbedInteractiveExample("pages/js/expressions-increment.html")}}</div> +{{EmbedInteractiveExample("pages/js/expressions-increment.html")}} +## 構文 +```js +x++ +++x +``` -<h2 id="構文">構文</h2> +## 解説 -<pre class="syntaxbox notranslate"><strong>Operator:</strong> <var>x</var>++ or ++<var>x</var> -</pre> +オペランドに後置で演算子を付けると (例えば、 `x++`) 、インクリメント演算子はインクリメントしますが、インクリメント前の値を返します。 -<h2 id="解説">解説</h2> +オペランドに前置で演算子を付けると (例えば、 `++x`) 、インクリメント演算子はインクリメントし、インクリメント後の値を返します。 -<p>オペランドに後置で演算子を付けると (例えば、 <code><var>x</var>++</code>) 、インクリメント演算子はインクリメントしますが、インクリメント前の値を返します。</p> +## 例 -<p>オペランドに前置で演算子を付けると (例えば、 <code>++<var>x</var></code>) 、インクリメント演算子はインクリメントし、インクリメント後の値を返します。</p> +### 後置インクリメント -<h2 id="例">例</h2> - -<h3 id="後置インクリメント">後置インクリメント</h3> - -<pre class="brush: js notranslate">let x = 3; +```js +let x = 3; y = x++; // y = 3 // x = 4 -</pre> +``` -<h3 id="前置インクリメント">前置インクリメント</h3> +### 前置インクリメント -<pre class="brush: js notranslate">let a = 2; +```js +let a = 2; b = ++a; // a = 3 // b = 3 -</pre> - -<h2 id="仕様">仕様</h2> - -<table class="standard-table"> - <tbody> - <tr> - <th scope="col">仕様</th> - </tr> - <tr> - <td>{{SpecName('ESDraft', '#sec-postfix-increment-operator', 'Increment operator')}}</td> - </tr> - </tbody> -</table> +``` -<h2 id="ブラウザーの互換性">ブラウザーの互換性</h2> +## 仕様書 +{{Specifications}} +## ブラウザーの互換性 -<p>{{Compat("javascript.operators.increment")}}</p> +{{Compat}} -<h2 id="関連項目">関連項目</h2> +## 関連情報 -<ul> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Addition">加算演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Subtraction">減算演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Multiplication">乗算演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Division">除算演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Remainder">剰余演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Exponentiation">べき乗演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Decrement">デクリメント演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Unary_negation">単項マイナス演算子</a></li> - <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Unary_plus">単項プラス演算子</a></li> -</ul> +- [加算演算子](/ja/docs/Web/JavaScript/Reference/Operators/Addition) +- [減算演算子](/ja/docs/Web/JavaScript/Reference/Operators/Subtraction) +- [除算演算子](/ja/docs/Web/JavaScript/Reference/Operators/Division) +- [乗算演算子](/ja/docs/Web/JavaScript/Reference/Operators/Multiplication) +- [剰余演算子](/ja/docs/Web/JavaScript/Reference/Operators/Remainder) +- [べき乗演算子](/ja/docs/Web/JavaScript/Reference/Operators/Exponentiation) +- [デクリメント演算子](/ja/docs/Web/JavaScript/Reference/Operators/Decrement) +- [単項マイナス演算子](/ja/docs/Web/JavaScript/Reference/Operators/Unary_negation) +- [単項プラス演算子](/ja/docs/Web/JavaScript/Reference/Operators/Unary_plus) |