TS for in, for of

Iterators and Generators

Iterables

An object is deemed iterable if it has an implementation for the Symbol.iterator property. Some built-in types like ArrayMapSetStringInt32ArrayUint32Array, etc. have their Symbol.iterator property already implemented. Symbol.iterator function on an object is responsible for returning the list of values to iterate on.

for..of statements

for..of loops over an iterable object, invoking the Symbol.iterator property on the object. Here is a simple for..of loop on an array:

let someArray = [1, "string", false]; 

for (let entry of someArray) {
 console.log(entry); // 1, "string", false 
}

 

for..of vs. for..in statements

Both for..of and for..in statements iterate over lists; the values iterated on are different though, for..in returns a list of keys on the object being iterated, whereas for..of returns a list of values of the numeric properties of the object being iterated.

Here is an example that demonstrates this distinction:

复制代码
let list = [4, 5, 6];

for (let i in list) { 
  console.log(i); // "0", "1", "2", 
}

for (let i of list) { 
  console.log(i); // "4", "5", "6" 
}
复制代码

 

Another distinction is that for..in operates on any object; it serves as a way to inspect properties on this object. for..of on the other hand, is mainly interested in values of iterable objects. Built-in objects like Map and Set implement Symbol.iterator property allowing access to stored values.

复制代码
let pets = new Set(["Cat", "Dog", "Hamster"]); 
pets["species"] = "mammals"; 

for (let pet in pets) { 
  console.log(pet); // "species" 
}

for (let pet of pets) { 
  console.log(pet); // "Cat", "Dog", "Hamster" 
}
复制代码

 

Code generation

Targeting ES5 and ES3

When targeting an ES5 or ES3-compliant engine, iterators are only allowed on values of Array type. It is an error to use for..of loops on non-Array values, even if these non-Array values implement the Symbol.iterator property.

The compiler will generate a simple for loop for a for..of loop, for instance:

let numbers = [1, 2, 3]; 
for (let num of numbers) { 
  console.log(num); 
}

 

will be generated as:

var numbers = [1, 2, 3]; 
for (var _i = 0; _i < numbers.length; _i++) { 
  var num = numbers[_i]; 
  console.log(num); 
}

 

Targeting ECMAScript 2015 and higher

When targeting an ECMAScipt 2015-compliant engine, the compiler will generate for..of loops to target the built-in iterator implementation in the engine.

posted @   He_LiangLiang  阅读(458)  评论(0编辑  收藏  举报
编辑推荐:
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
阅读排行:
· DeepSeek 开源周回顾「GitHub 热点速览」
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· AI与.NET技术实操系列(二):开始使用ML.NET
· 单线程的Redis速度为什么快?
点击右上角即可分享
微信分享提示