aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/javascript/reference/operators/exponentiation_assignment
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-09-26 00:07:38 +0900
committerMasahiro FUJIMOTO <mfujimot@gmail.com>2021-10-03 13:37:37 +0900
commit3d9227f8d11cf28c9999054afa2d63b83ef38b3d (patch)
treef4b8f242dca874dedd122e3dd456081674b03430 /files/ja/web/javascript/reference/operators/exponentiation_assignment
parent3c2bf713cfa224cd0193704d461dd54538db7252 (diff)
downloadtranslated-content-3d9227f8d11cf28c9999054afa2d63b83ef38b3d.tar.gz
translated-content-3d9227f8d11cf28c9999054afa2d63b83ef38b3d.tar.bz2
translated-content-3d9227f8d11cf28c9999054afa2d63b83ef38b3d.zip
Markdown へ変換するためにファイル名を変更
Diffstat (limited to 'files/ja/web/javascript/reference/operators/exponentiation_assignment')
-rw-r--r--files/ja/web/javascript/reference/operators/exponentiation_assignment/index.md (renamed from files/ja/web/javascript/reference/operators/exponentiation_assignment/index.html)18
1 files changed, 9 insertions, 9 deletions
diff --git a/files/ja/web/javascript/reference/operators/exponentiation_assignment/index.html b/files/ja/web/javascript/reference/operators/exponentiation_assignment/index.md
index 9a7faa7c49..8641cd8dab 100644
--- a/files/ja/web/javascript/reference/operators/exponentiation_assignment/index.html
+++ b/files/ja/web/javascript/reference/operators/exponentiation_assignment/index.md
@@ -2,29 +2,29 @@
title: べき乗代入 (**=)
slug: Web/JavaScript/Reference/Operators/Exponentiation_assignment
tags:
- - Assignment operator
+ - 代入演算子
- JavaScript
- - Language feature
- - Operator
+ - 言語機能
+ - 演算子
- Reference
translation_of: Web/JavaScript/Reference/Operators/Exponentiation_assignment
---
-<div>{{jsSidebar("Operators")}}</div>
+{{jsSidebar("Operators")}}
-<p>べき乗代入演算子 (<code>**=</code>) は、変数の値を右辺のオペランドでべき乗します。</p>
+べき乗代入演算子 (`**=`) は、変数の値を右辺のオペランドでべき乗します。
-<div>{{EmbedInteractiveExample("pages/js/expressions-exponentiation-assignment.html")}}</div>
+{{EmbedInteractiveExample("pages/js/expressions-exponentiation-assignment.html")}}
<div></div>
-<h2 id="構文">構文</h2>
+## 構文
<pre class="syntaxbox notranslate"><strong>Operator:</strong> x **= y
<strong>Meaning:</strong> x = x ** y</pre>
-<h2 id="例">例</h2>
+## 例
<h3 id="べき乗代入の仕様">べき乗代入の仕様</h3>
@@ -51,7 +51,7 @@ bar **= 'foo' // NaN</pre>
-<p>{{Compat("javascript.operators.exponentiation_assignment")}}</p>
+{{Compat("javascript.operators.exponentiation_assignment")}}
<h2 id="関連項目">関連項目</h2>