Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

算術演算子

この翻訳は不完全です。英語から この記事を翻訳 してください。

算術演算子 は 数値 (または文字列や変数)をオペランドとして扱い、1つの数値(または文字列や変数)を返します。標準的な算術演算子には足し算(+),引き算(-),掛け算(*),割り算(/)があります。

加算 (+)

加算演算子は数値の合計または文字列の連結を行います。

構文

Operator: x + y

// Number + Number -> addition
1 + 2 // 3

// Boolean + Number -> addition
true + 1 // 2

// Boolean + Boolean -> addition
false + false // 0

// Number + String -> concatenation
5 + "foo" // "5foo"

// String + Boolean -> concatenation
"foo" + false // "foofalse"

// String + String -> concatenation
"foo" + "bar" // "foobar"

減算 (-)

減算演算子は1つの数値から1つの数値を差し引き、差を返します。

構文

Operator: x - y

5 - 3 // 2
3 - 5 // -2
"foo" - 3 // NaN

除算 (/)

除算演算子は左のオペランドを右のオペランドで割り引くことで商を返します。

構文

Operator: x / y

1 / 2      // returns 0.5 in JavaScript
1 / 2      // returns 0 in Java 
// (neither number is explicitly a floating point number)

1.0 / 2.0  // returns 0.5 in both JavaScript and Java

2.0 / 0    // returns Infinity in JavaScript
2.0 / 0.0  // returns Infinity too
2.0 / -0.0 // returns -Infinity in JavaScript

乗算 (*)

乗算演算子は数値を掛けあわせた結果を返します。

構文

Operator: x * y

2 * 2 // 4
-2 * 2 // -4
Infinity * 0 // NaN
Infinity * Infinity // Infinity
"foo" * 2 // NaN

剰余 (%)

剰余演算子は1つ目の数値を2つ目の数値で割った余りを返します。 ECMAScriptでは、modulo演算子(剰余のみではなく、商と剰余を得ることができる演算子)の導入が検討されています。

構文

Operator: var1 % var2

12 % 5 // 2
-1 % 2 // -1
NaN % 2 // NaN
1 % 2 // 1
2 % 3 // 2
-4 % 2 // -0
5.5 % 2 // 1.5

べき乗 (**)

This is an experimental technology, part of the ECMAScript 2016 (ES7) proposal.
Because this technology's specification has not stabilized, check the compatibility table for usage in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future version of browsers as the spec changes.

べき乗は1つ目の数値を2つ目の数値でべき乗した値を返します。つまり var1var2 といった形になります。また a ** b ** c と a ** (b ** c) は同じ値を返します。

構文

Operator: var1 ** var2

補足

PHP や Python やその他の言語にも ^   ** といったべき乗の演算子がありますが、べき乗は通常 - + といった単項演算子よりも優先されます。しかし、Bashや現在のES7のドラフトの仕様では、べき乗は単項演算子よりも低い優先順位となっています。

-2 ** 2 // equals 4 in ES7 or in Bash, equals -4 in other languages.

Examples

2 ** 3 // 8
3 ** 2 // 9
3 ** 2.5 // 15.588457268119896
10 ** -1 // 0.1
NaN ** 2 // NaN

2 ** 3 ** 2 // 512
2 ** (3 ** 2) // 512
(2 ** 3) ** 2 // 64

インクリメント (++)

インクリメント演算子は数値を1ずつ加算し、値を返します。

  • If used postfix, with operator after operand (for example, x++), then it returns the value before incrementing.
  • If used prefix with operator before operand (for example, ++x), then it returns the value after incrementing.

構文

Operator: x++ or ++x

// Postfix 
var x = 3;
y = x++; // y = 3, x = 4

// Prefix
var a = 2;
b = ++a; // a = 3, b = 3

デクリメント (--)

The decrement operator decrements (subtracts one from) its operand and returns a value.

  • If used postfix (for example, x--), then it returns the value before decrementing.
  • If used prefix (for example, --x), then it returns the value after decrementing.

構文

Operator: x-- or --x

// Postfix 
var x = 3;
y = x--; // y = 3, x = 2

// Prefix
var a = 2;
b = --a; // a = 1, b = 1

Unary negation (-)

The unary negation operator precedes its operand and negates it.

構文

Operator: -x

var x = 3;
y = -x; // y = -3, x = 3

Unary plus (+)

The unary plus operator precedes its operand and evaluates to its operand but attempts to converts it into a number, if it isn't already. Although unary negation (-) also can convert non-numbers, unary plus is the fastest and preferred way of converting something into a number, because it does not perform any other operations on the number. It can convert string representations of integers and floats, as well as the non-string values true, false, and null. Integers in both decimal and hexadecimal ("0x"-prefixed) formats are supported. Negative numbers are supported (though not for hex). If it cannot parse a particular value, it will evaluate to NaN.

構文

Operator: +x

+3     // 3
+"3"   // 3
+true  // 1
+false // 0
+null  // 0

仕様

Specification Status Comment
ECMAScript 1st Edition. Standard Initial definition.
ECMAScript 5.1 (ECMA-262)
The definition of 'Additive operators' in that specification.

ECMAScript 5.1 (ECMA-262)
The definition of 'Multiplicative operators' in that specification.

ECMAScript 5.1 (ECMA-262)
The definition of 'Postfix expressions' in that specification.

ECMAScript 5.1 (ECMA-262)
The definition of 'Unary operators' in that specification.
Standard  
ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'Additive operators' in that specification.

ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'Multiplicative operators' in that specification.

ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'Postfix expressions' in that specification.

ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'Unary operators' in that specification.
Standard  

ブラウザ互換性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (有) (有) (有) (有) (有)
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (有) (有) (有) (有) (有) (有)

関連項目

ドキュメントのタグと貢献者

 このページの貢献者: mamodayo, lv7777, teoli, ethertank, Potappo
 最終更新者: mamodayo,