摘要: 遍历数组 var arr2 = [3,4,5,6,7,8]; //第一种方法 for(var i =0;i<arr.length;i++){ console.log(arr2[i]); } //第二种方法 arr2.forEach(function(e){ console.log(e); }) 遍历 阅读全文
posted @ 2020-08-05 16:49 小茴香 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 使用对象字面量的方式创建对象 var obj = { name: '刘德华', age: 18, sayHi: function () { console.log('hi'); } }; // 使用对象 console.log(obj.name); console.log(obj['age']); 阅读全文
posted @ 2020-08-05 16:33 小茴香 阅读(466) 评论(0) 推荐(0) 编辑
Live2D