Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 知乎專欄 | 視頻教程 | About

22.9. Loop

22.9.1. for json map

			
const contracts = {
    'EOS':'0x86fa049857e0209aa7d9e616f7eb3b3b78ecfdb0',
    'FBC':'0x0c6df9bb12b32aeec1e117936457ed83ad8a1c70',
    'USDT':''
};

for(let symbol in contracts) {  
    console.log(symbol,contracts[symbol]);  
} 			
			
			

22.9.2. forEach

			
arr.forEach(function (item) {
  someFn(item);
})

elements.forEach(function(element){
  
});
			
			
			
var a = ["a", "b", "c"];
a.forEach(function(entry) {
    console.log(entry);
});