“JS String to Charcode Array” Code-Antworten

Zeichenfolge zu char Array in 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 Array

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

Ähnliche Antworten wie “JS String to Charcode Array”

Fragen ähnlich wie “JS String to Charcode Array”

Weitere verwandte Antworten zu “JS String to Charcode Array” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen