“js string to charcode массив” Ответ

Строка для массива в 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

Ответы похожие на “js string to charcode массив”

Вопросы похожие на “js string to charcode массив”

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

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

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