내장 개체(JavaScript)
var theMonths = new Array(12); theMonths[0] = "Jan"; theMonths[1] = "Feb"; theMonths[2] = "Mar"; theMonths[3] = "Apr"; theMonths[4] = "May"; theMonths[5] = "Jun"; theMonths[6] = "Jul"; theMonths[7] = "Aug"; theMonths[8] = "Sep"; theMonths[9] = "Oct"; theMonths[10] = "Nov"; theMonths[11] = "Dec";
var theMonths = new Array("Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec");
var aString = "0123456789"; // This code sets aChunk to "456". var aChunk = aString.substring(4, 7); // This code sets anotherChunk to "456", using // the lower value index as the starting index. var anotherChunk = aString.substring(7, 4); // This code sets the firstLetter variable to "J" // by using the array in the preceding array creation example. firstLetter = theMonths[5].substring(0,1);
var howLong = "Hello World".length // Sets the howLong variable to 11.
var radius = 5; var circleArea = Math.PI * radius * radius;
var volume = (4/3)*(Math.PI*Math.pow(radius,3));
var toDay = new Date(); var thisYear = toDay.getFullYear(); var thisMonth = theMonths[toDay.getMonth()]; var thisDay = thisMonth + " " + toDay.getDate() + ", " + thisYear;
from : MSDN https://msdn.microsoft.com/ko-kr/library/4zx5dkc9(v=vs.94).aspx
///843.
'지속가능티끌 > JavaScript' 카테고리의 다른 글
JavaScript. 함수 (Functions) (0) | 2016.07.27 |
---|---|
JavaScript. 연산자, 우선순위. Operators. (0) | 2016.07.27 |
JavaScript. 변수 (Variable). 전역,지역 (0) | 2016.07.27 |
JavaScript. 프로그램 흐름제어. if,while, for, break, continue. (0) | 2016.07.27 |
JavaScript. 코드 작성 룰. (0) | 2016.07.27 |
댓글