개체 만들기(JavaScript)
JavaScript
var pasta = new Object(); pasta.grain = "wheat"; pasta.width = 0.5; pasta.shape = "round"; pasta.getShape = function() { return this.shape; }; document.write(pasta.grain); document.write("<br/>"); document.write(pasta.getShape()); // Output: // wheat // round
JavaScript
var pasta = { grain: "wheat", width: 0.5, shape: "round" };
from MSDN : https://msdn.microsoft.com/ko-kr/library/202863ha(v=vs.94).aspx
///849.
'지속가능티끌 > JavaScript' 카테고리의 다른 글
JavaScript. 로컬이미지 미리 보이기. (0) | 2016.08.24 |
---|---|
JavaScript. Object. Array (0) | 2016.07.28 |
JavaScript. 함수 (Functions) (0) | 2016.07.27 |
JavaScript. 연산자, 우선순위. Operators. (0) | 2016.07.27 |
JavaScript. 변수 (Variable). 전역,지역 (0) | 2016.07.27 |
댓글