Hi Friends đź‘‹,

Welcome to Infinitbility ❤️!

Today, we are going to learn How to convert string to char array in typescript, here we will use built-in method .split() to convert string to array.

Well, we have sample an string which we have to seprate and we have to pick those data and use as array.

To do this things, we have built-in method .split() which we have to provide empty string seprator for to seprate every string char element.

let’s dive in code…

let brandStr: string = 'Infinitbility';

// lets convert it in array
let brandArray: Array<string> = brandStr.split("");

console.log(brandArray);

Well, when you run above code, you can able to see above string converted in char array.

For now, let’s check the output.

Output

TypeScript, convert comma (,) separated string to array example
TypeScript, convert comma (,) separated string to array example

All the best đź‘Ť.