--- title: 減算 (-) slug: Web/JavaScript/Reference/Operators/Subtraction tags: - JavaScript - Language feature - Operator - Reference translation_of: Web/JavaScript/Reference/Operators/Subtraction ---
{{jsSidebar("Operators")}}

減算演算子 (-) は2つのオペランドを減算し、それらの差を生成します。

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

構文

Operator: x - y

数値による減算

5 - 3     // 2
3 - 5     // -2

非数による減算

'foo' - 3 // NaN

仕様

仕様
{{SpecName('ESDraft', '#sec-subtraction-operator-minus', 'Subtraction operator')}}

ブラウザーの互換性

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

関連項目