So trennen Sie Stringelemente in JavaScript
let string = "How are you?";
const newArr = string.split(" ");
baba
let string = "How are you?";
const newArr = string.split(" ");