“string to char code массив JavaScript” Ответ

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

const string = 'hi there';

const usingSplit = string.split('');              
const usingSpread = [...string];
const usingArrayFrom = Array.from(string);
const usingObjectAssign = Object.assign([], string);

// Result
// [ 'h', 'i', ' ', 't', 'h', 'e', 'r', 'e' ]
Splendid Stoat

js string to charcode массив

let input = "words".split("");
let output = [];
input.forEach(letter => {
	output.push(letter.charCodeAt(0))
});
console.log(output) //[119, 111, 114, 100, 115]
Anxious Antelope

string to char code массив JavaScript

[..."text"].map(letter=>letter.charCodeAt(0))
Troubled Tuatara

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

// V1
const word = "abcd";
const characterArray = word.split(""); // ["a", "b", "c", "d"]

// V2
[...word] // ["a", "b", "c", "d"]
LordSalmon

Ответы похожие на “string to char code массив JavaScript”

Вопросы похожие на “string to char code массив JavaScript”

Больше похожих ответов на “string to char code массив JavaScript” по JavaScript

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

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