Why cant I use this approach in React-Native for a faster looping:
var array = this.myinputfields.textfields.length;
for (let i = 0; i < array; i++)
I know this can be done in JavaScript but not in React-Native. Is there a way to loop faster through an array?