“строка для массива javaScript” Ответ

преобразовать строку в массив JS

// our string
let string = 'ABCDEFG';

// splits every letter in string into an item in our array
let newArray = string.split('');

console.log(newArray); // OUTPUTS: [ "A", "B", "C", "D", "E", "F", "G" ]
snakebite_382

JavaScript взорвется

//split into array of strings.
var str = "Well, how, are , we , doing, today";
var res = str.split(",");
Grepper

js строка в массив

// string
let string = '12345';

// splits characters string into items in our array
let array = string.split('');

console.log(array); // [ "1", "2", "3", "4", "5"]
Caffeinated Developer

строка для массива javaScript

const str = 'Hello!';

console.log(Array.from(str)); //  ["H", "e", "l", "l", "o", "!"]
Leonardo

строка для массива javaScript

// If you want to split on a specific character in a string:
const stringToSplit = '01-02-2020';
console.log(stringToSplit.split('-')); 
// ["01", "02", "2020"]

// If you want to split every character:
const stringToSplit = '01-02-2020';
console.log(Array.from(stringToSplit));
// ["0", "1", "-", "0", "2", "-", "2", "0", "2", "0"]
RWL_Dittrich

строка для массива javaScript

const string = "Hello!";

console.log([...string]); // ["H", "e", "l", "l", "o", "!"]
kripi__

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

Вопросы похожие на “строка для массива javaScript”

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

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

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