object 썸네일형 리스트형 Object에 동적으로 Property 추가 javascript에서 동적으로 Object에 Property를 추가할 일이 생겼다. 총 3가지 방법을 생각해봤는데 하나씩 살펴보면, 1. 스크립틀릿(Scriptlets) 사용 var scritletObj = { "key_1": { "name": "jimmy", "msg": "hello world" }, "key_2": { "name": "billy", "msg": "foo equals bar" }, 더보기 javascript class 만들어 쓰기 클래스 생성 //dataset objectfunction datasetObj(label, valueArr, color){ this.label = label; this.data = valueArr; this.yaxis = 2; this.color = color; this.points = { symbol: "triangle", fillColor: color, show: true }; this.lines = {show:true}; this.points = {radius:3,fill:true,show:true }; this.splines = {show: false,tension: 0.6,lineWidth: 1,fill: 0.1 }; return this;} 객체 생성 new datasetObj('유효전력량(kW.. 더보기 이전 1 다음