[Study - Front-end basic] JavaScript
객체 활용
함수도 객체의 속성으로 쓸 수 있다.
1
2
3
4
5
6
7
8
9
10
11
12
var Links = {
setColor:function(color){
var alist = document.querySelectorAll('a');
var i = 0;
while(i < alist.length){
alist[i].style.color = color;
i = i + 1;
}
}
}
// Links.setColor('blue') 처럼 객체 사용
Reference
This post is licensed under CC BY 4.0 by the author.