Is there any difference between creating an iterator for the values of an array using these two forms?
let myIterator = arr[Symbol.iterator]()
let myIterator2 = arr.values()
I did some testing and at least the result looks the same. I wonder if 'in the gut' there is any difference like performance or other relevant characteristics.