-
search_ _ _ _
-
search_ _ _ _
-
search_ _ _ _
script_기초_반복문
//for 반복문 const colors = ["red","green","blue","aqua","pink"]; console.log(colors.length); // 5 for(let i = 0; i < colors.length; i++){ console.log(colors[i]); } //객체 for 반복문 const classA = [ { name : "Andy", age : 20, address : "seoul" }, { name : "Emma", age : 30, address : "busan" }, { name : "David", age : 40, address : "deagu" }, ]; for(let num = 0; num < classA.length; num++){ console.log(..
2022. 10. 12.