“JS присоединяется к струнам” Ответ

Присоединяйтесь к тексту в 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

Как объединить струны 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 присоединиться

//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 Concatenate Strings

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

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

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

соединение массива строки

Array.join()
Yawning Yacare

JS присоединяется к струнам

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

Ответы похожие на “JS присоединяется к струнам”

Вопросы похожие на “JS присоединяется к струнам”

Больше похожих ответов на “JS присоединяется к струнам” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования