var str = "my car is red"; var stringArray = str.split(/(s+)/); console.log(stringArray); // ["my", " ", "car", " ", "is", " ", "red"]