개체 만들기(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" };
///1133.
'지속가능티끌 > JavaScript' 카테고리의 다른 글
Node.js 개요 . 설치. (0) | 2020.03.10 |
---|---|
JavaScript. 시간함수 (0) | 2016.12.08 |
JavaScript. 상수. (0) | 2016.12.07 |
JavaScript. 배열 생성,shift, pop, unshift, push (0) | 2016.12.07 |
JavaScript. 로컬이미지 미리 보이기. (0) | 2016.08.24 |
댓글