JavaScript stringa di riferimento
Esempio
Unire due stringhe:
var str1 = "Hello ";
var str2 = "world!";
var res = str1.concat(str2);
Il risultato della res sarà:
Hello world!
Prova tu stesso " Più "Provate voi stessi" esempi di seguito.
Definizione e utilizzo
Il concat() metodo viene utilizzato per unire due o più stringhe.
Questo metodo non cambia le stringhe esistenti, ma restituisce una nuova stringa contenente il testo delle stringhe uniti.
Supporto per il browser
metodo | |||||
---|---|---|---|---|---|
concat() | sì | sì | sì | sì | sì |
Sintassi
string.concat( string1 , string2 , ..., stringX )
valori dei parametri
Parameter | Description |
---|---|
string1 , string2 , ..., stringX | Required. The strings to be joined |
Dettagli tecnici
Valore di ritorno: | Una nuova stringa contenente il testo delle stringhe combinate |
---|---|
Versione JavaScript: | 1.2 |
Altri esempi
esempio 2
Partecipa tre stringhe:
var str1 = "Hello ";
var str2 = "world!";
var str3 = " Have a nice day!";
var res = str1.concat(str2,str3);
Il risultato della res sarà:
Hello world! Have a nice day!
Prova tu stesso " JavaScript stringa di riferimento