“Jak połączyć struny JavaScript” Kod odpowiedzi

Jak połączyć struny JavaScript


var str1 = "Hello ";
var str2 = "world!";
var res = str1.concat(str2);
// does not change the existing strings, but
// returns a new string containing the text
// of the joined strings.
Misty Mandrill

String Conatenacja w JS

var str1 = "Hello ";
var str2 = "world!";
var res = str1.concat(str2);
console.log(res);
JavascriptNinja

Jak połączyć struny i zmienne w JavaScript

const helloName = name => `Hello ${name}!`
TechWhizKid

String Concat JavaScript

//This method adds two or more strings and returns a new single string.

let str1 = new String( "This is string one" ); 
let str2 = new String( "This is string two" ); 
let str3 = str1.concat(str2.toString());
console.log("str1 + str2 : "+str3)

output:
str1 + str2 : This is string oneThis is string two
Creepy Gábor

String Concat in JS

let string1 = "Hello"
let string2 = "World"

let finalString = string1 + ", " + string2 + "!" // Hello, World!
Nervous Narwhal

Jak połączyć struny JavaScript

<p id="demo"></p>

<script>
let text1 = "Hello";
let text2 = "world!";
let result = text1.concat(" ", text2);

document.getElementById("demo").innerHTML = result;
</script>
Sourabh Dhiman

Odpowiedzi podobne do “Jak połączyć struny JavaScript”

Pytania podobne do “Jak połączyć struny JavaScript”

Więcej pokrewnych odpowiedzi na “Jak połączyć struny JavaScript” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu