aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/javascript/reference/operators/addition/index.html
blob: 6f95df95d144182ad7c236f8a17fc09f71301590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
title: Addition (+)
slug: Web/JavaScript/Reference/Operators/Addition
tags:
  - JavaScript
  - Operator
  - Referenz
  - Sprachfeature
translation_of: Web/JavaScript/Reference/Operators/Addition
---
<div>{{jsSidebar("Operators")}}</div>

<p>Der Addition-Operator (<code>+</code>) erzeugt die Summe nummerischer Operanden oder setzt Zeichenketten zusammen.</p>

<div>{{EmbedInteractiveExample("pages/js/expressions-addition.html")}}</div>

<div></div>

<p class="hidden">Der Quellcode dieses interaktiven Beispiels, befindet sich in einem GitHub Repository. Wenn Sie zum Projekt für diese interaktiven Beispiele beitragen möchten, clonen Sie sich bitte das Projekt mittels <a href="https://github.com/mdn/interactive-examples">https://github.com/mdn/interactive-examples</a> und schicken Sie uns einen Pull-Request.</p>

<h2 id="Syntax">Syntax</h2>

<pre class="syntaxbox notranslate"><strong>Operator:</strong> <var>x</var> + <var>y</var>
</pre>

<h2 id="Beispiele">Beispiele</h2>

<h3 id="Nummerische_Addition_Summe">Nummerische Addition (Summe)</h3>

<pre class="brush: js notranslate">// Nummer + Nummer -&gt; Addition (Summe)
1 + 2 // 3

// Boolean + Nummer -&gt; Addition (Summe, da true = 1)
true + 1 // 2

// Boolean + Boolean -&gt; Addition (Summe, da false = 0)
false + false // 0
</pre>

<h3 id="Zeichenkettenzusammensetzung">Zeichenkettenzusammensetzung</h3>

<pre class="brush: js notranslate">// String (Zeichenkette) + String (Zeichenkette) -&gt; Zusammensetzung
'foo' + 'bar' // "foobar"

// Nummer + String (Zeichenkette) -&gt; Zusammensetzung
5 + 'foo' // "5foo"

// String (Zeichenkette) + Boolean -&gt; Zusammensetzung
'foo' + false // "foofalse"</pre>

<h2 id="Spezifikationen">Spezifikationen</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">Spezifikation</th>
  </tr>
  <tr>
   <td>{{SpecName('ESDraft', '#sec-addition-operator-plus', 'Addition Operator')}}</td>
  </tr>
 </tbody>
</table>

<h2 id="Browserkompatibilität">Browserkompatibilität</h2>

<div class="hidden">Die Kompatibilitätstabelle auf dieser Seite wurde aus strukturierten Daten erzeugt. Wenn Sie zu den Daten beitragen möchten, checken Sie bitte <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> aus und schicken Sie uns einen Pull-Request.</div>

<p>{{Compat("javascript.operators.addition")}}</p>

<h2 id="Siehe_auch">Siehe auch</h2>

<ul>
 <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Subtraction">Subtraktion-Operator</a></li>
 <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Division">Division-Operator</a></li>
 <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Multiplication">Multiplikation-Operator</a></li>
 <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Remainder">Rest-Operator</a></li>
 <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Exponentiation">Potenzierung-Operator</a></li>
 <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Increment">Inkrement (Erhöhung) Operator</a></li>
 <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Decrement">Dekrement (Verringern) Operator</a></li>
 <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Unary_negation">Einstellige Negation Operator</a></li>
 <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Unary_plus">Einstelliger Plus operator</a></li>
</ul>