convert string to array ja code example
Example 1: string to 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);
Example 2: how to convert string to array in java
How to convert string to array
import java.util.*;
public class GFG {
public static void main(String args[])
{
String str = "GeeksForGeeks";
char[] ch = str.toCharArray();
for (char c : ch) {
System.out.println(c);
}
}
}