“JS Junte -se a Strings” Respostas de código

Junte -se ao texto em JS

const myText = "It is a long established fact that a reader will"
const newText = myText.split(" ").join("-")
console.log(newText);//It-is-a-long-established-fact-that-a-reader-will
Keerthan Chand

como concatenar strings 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

JS ingressar

//turns array to string

const elements = ['Fire', 'Air', 'Water'];

console.log(elements.join());
// expected output: "Fire,Air,Water"

console.log(elements.join(''));
// expected output: "FireAirWater"

console.log(elements.join('-'));
// expected output: "Fire-Air-Water"
mikelikestocode

JS Concatenar Strings

const str1 = 'Hello';
const str2 = 'World';

console.log(str1 + str2);
>> HelloWorld

console.log(str1 + ' ' + str2);
>> Hello World
Ariel Ferdman

Juntando a matriz de cordas

Array.join()
Yawning Yacare

JS Junte -se a Strings

const elements = ['Fire', 'Air', 'Water'];

console.log(elements.join());     // => "Fire,Air,Water"
console.log(elements.join(''));   // => "FireAirWater"
console.log(elements.join('-'));  // => "Fire-Air-Water"
Yaakov Belch

Respostas semelhantes a “JS Junte -se a Strings”

Perguntas semelhantes a “JS Junte -se a Strings”

Mais respostas relacionadas para “JS Junte -se a Strings” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código