VDVaibhav Dhimaninvars.hashnode.dev·Jun 8, 2022 · 1 min readConverting a String into array in JavaScriptThere are three ways to convert a string into an array of character. Using the Spread Operator (Keep in mind that the spread operator will convert the string into character array) const string = "This is a string" console.log([...string]) Using th...00