“JS String ke Charcode Array” Kode Jawaban

string ke array char di 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 ke 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

Jawaban yang mirip dengan “JS String ke Charcode Array”

Pertanyaan yang mirip dengan “JS String ke Charcode Array”

Lebih banyak jawaban terkait untuk “JS String ke Charcode Array” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya