From 722252a0dd72f67d8b704e9e869ea9b0cbffde65 Mon Sep 17 00:00:00 2001 From: Masahiro FUJIMOTO Date: Sat, 25 Sep 2021 22:16:30 +0900 Subject: Markdown化のためのファイル名変更 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reference/operators/multiplication/index.html | 74 ---------------------- 1 file changed, 74 deletions(-) delete mode 100644 files/ja/web/javascript/reference/operators/multiplication/index.html (limited to 'files/ja/web/javascript/reference/operators/multiplication/index.html') diff --git a/files/ja/web/javascript/reference/operators/multiplication/index.html b/files/ja/web/javascript/reference/operators/multiplication/index.html deleted file mode 100644 index 4aed5ac7f6..0000000000 --- a/files/ja/web/javascript/reference/operators/multiplication/index.html +++ /dev/null @@ -1,74 +0,0 @@ ---- -title: 乗算 (*) -slug: Web/JavaScript/Reference/Operators/Multiplication -tags: - - JavaScript - - Language feature - - Operator - - Reference -translation_of: Web/JavaScript/Reference/Operators/Multiplication ---- -
{{jsSidebar("Operators")}}
- -

乗算演算子 (*) はオペランドの積を生成します。

- -
{{EmbedInteractiveExample("pages/js/expressions-multiplication.html")}}
- -
- - - -

構文

- -
Operator: x * y
-
- -

- -

数値を使用した乗算

- -
 2 * 2      // 4
--2 * 2     // -4
-
- -

無限大との乗算

- -
Infinity * 0         // NaN
-Infinity * Infinity  // Infinity
- -

非数との乗算

- -
'foo' * 2 // NaN
- -

仕様

- - - - - - - - - - -
仕様
{{SpecName('ESDraft', '#sec-multiplicative-operators', 'Multiplication operator')}}
- -

ブラウザーの互換性

- - - -

{{Compat("javascript.operators.multiplication")}}

- -

関連項目

- - -- cgit v1.2.3-54-g00ecf