<script type="text/javascript">
var theBeatles=new Array("John","Paul","Gearge","Ringo");
for(var loopCounter=0;loopCounter<theBeatles.length;loopCounter++){
document.write(theBeatles[loopCounter]+"<br>");
}
var indexKey;
for(indexKey in theBeatles){
document.write("indexKey is "+indexKey+"<br>");
document.write("item value is "+theBeatles[indexKey]+"<br><br>");
}
</script>
相关文章
- 06-24vue中的深度监听(监听一个对象的全部属性、监听一个对象的一个属性)
- 06-24从QComboBox中的样式列表中使用QStyleFactory设置样式
- 06-24vue中watch的详细用法
- 06-24PHP大量数据循环时内存耗尽问题的解决方案
- 06-24NLP中对word level,sentence level,document level的理解
- 06-24【转载】【《Real-Time Rendering 3rd》 提炼总结】(九) 第十章 · 游戏开发中基于图像的渲染技术总结
- 06-24python-如何在不使用循环的情况下使用numpy.lexsort
- 06-24python中return和print的区别(详细)
- 06-24QT中的绝对路径和相对路径
- 06-24使用HashMap或Hashset优化使用循环判断字符串中是否含有重复元素