객체의 value를 return해준다.
s = "1234567"; for(let i of s){ console.log(i); } for(let i = 0 ; i < s.length; i++){ console.log(s.charAt(i)) }
둘다 같은것.