ebiwd / EBI-Framework

The EMBL-EBI Visual Framework for websites and services.
https://www.ebi.ac.uk/style-lab/websites/
19 stars 16 forks source link

Array.prototype.ebiLast interfering with for-in loops #165

Open gpmaccari opened 3 years ago

gpmaccari commented 3 years ago

The utility method ebiLast is interfering with for-in loops. If I write this code:

var test=['a','b'];
for (var t in test) {
  console.log(t);
}

I will see this output:

1
2
ebiLast