TRANSFORM A WORD charactersINTO ARRAY JS code example
Example: how to change string to array in javascript
a=anyElement.all
// console.log(a)
Array.from(a).forEach(function (element){
console.log(element)
})
a=anyElement.all
// console.log(a)
Array.from(a).forEach(function (element){
console.log(element)
})