Isn't there any ways for converting array-like objects into array so that all array methods can be used with it?see here:
[].prototype.forEach.call("maizere",fn)
likewise for every array-like objects,
what i want is ,to use forEach loop directly on this "maizere" string.But before that i need to convert it into an array .Is there any possibility or any trick that works for all array-like objects.Thank u.