for...in

for(let key in dash){
				alert(key);
				alert(dash[key]);
			}```

for(v in object)
原文地址:https://www.cnblogs.com/flyover/p/13931827.html