Skip to content
This repository has been archived by the owner on Apr 9, 2021. It is now read-only.

Latest commit

 

History

History
21 lines (14 loc) · 406 Bytes

stringsverknuepfen.md

File metadata and controls

21 lines (14 loc) · 406 Bytes
title toc
Strings verknüpfen
9

{{ page.title }}

Um variable und statische Strings aneinander zu hängen müssen sie verknüpft werden. Dies kann so aussehen:

{% highlight javascript linenos %}

var name = 'Amy';

anzeigeText = 'Name: ' + name;

alert(anzeigeText);

{% endhighlight %}

Der Inhalt der Variable name wird mit dem String 'Name: ' verknüpft und kann dann angezeigt werden.