Answers for "how to transform string in array javascript"

1

convert a string to array in javascript

// Designed by shola for shola

str = 'How are you doing today?';
console.log(str.split(" "));

//try console.log(str.split(""));  with no space in the split function
//try console.log(str.split(","));  with a comma in the split function
Posted by: Guest on January-17-2021
1

how to change string to array in javascript

a=anyElement.all

// console.log(a)
Array.from(a).forEach(function (element){
    console.log(element)
})
Posted by: Guest on August-02-2020

Code answers related to "how to transform string in array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language