So trennen Sie Stringelemente in JavaScript

let string = "How are you?";
const newArr = string.split(" ");
baba