array of chars to string js 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);

// Result
// [ 'h', 'i', ' ', 't', 'h', 'e', 'r', 'e' ]

Example 2: array of char to string in java

String x2 = "hello";
String newSortedString = "";
Object[] y = x2.toLowerCase()
                .chars()
                .sorted()
                .mapToObj(i -> (char) i)
                .toArray();

for (Object o: y) {
  newSortedString = newSortedString.concat(o.toString());
}

System.out.println(newSortedString);