+ 2
What is the most simple way to convert a string into an arrray
Like var str='Abhay' How to make it an array by few lines of codes like this :- arr = [A, b, h, a, y]
1 Antwort
+ 2
var arr = [...str]
Like var str='Abhay' How to make it an array by few lines of codes like this :- arr = [A, b, h, a, y]