diff options
Diffstat (limited to 'files/ja/web/javascript/reference/operators/logical_nullish_assignment')
-rw-r--r-- | files/ja/web/javascript/reference/operators/logical_nullish_assignment/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ja/web/javascript/reference/operators/logical_nullish_assignment/index.html b/files/ja/web/javascript/reference/operators/logical_nullish_assignment/index.html index 1c2235a65e..ba7ebab53d 100644 --- a/files/ja/web/javascript/reference/operators/logical_nullish_assignment/index.html +++ b/files/ja/web/javascript/reference/operators/logical_nullish_assignment/index.html @@ -27,7 +27,7 @@ translation_of: Web/JavaScript/Reference/Operators/Logical_nullish_assignment <h3 id="短絡評価(ショートサーキット)">短絡評価(ショートサーキット)</h3> -<p><a href="/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing_operator">Null 合体演算子</a>は左から右に評価され、次のルールを使って短絡評価の可能性があるかどうかテストされます。</p> +<p><a href="/ja/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing_operator">Null 合体演算子</a>は左から右に評価され、次のルールを使って短絡評価の可能性があるかどうかテストされます。</p> <p><code>(null や undefined ではない式) ?? expr</code> は、左辺が <code>null</code> でも <code>undefined</code> でもないことが証明されたら、左辺の式が短絡評価されます。</p> @@ -82,7 +82,7 @@ config({}); // { duration: 100, speed: 25 } <h2 id="関連情報">関連情報</h2> <ul> - <li><a href="/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing_operator">Null 合体演算子 (<code>??</code>)</a></li> + <li><a href="/ja/docs/Web/JavaScript/Reference/Operators/Nullish_coalescing_operator">Null 合体演算子 (<code>??</code>)</a></li> <li>{{Glossary("Nullish")}}</li> <li>{{Glossary("Truthy")}}</li> <li>{{Glossary("Falsy")}}</li> |