1_JavaScript-core / 11_standard-built-in-object
01_global-object (전역 객체)
01_built-in-global-property.js (빌트인 전역 프로피티)
02_built-in-global-function.js (빌트인 전역 함수)
isFinite
isNaN
parseFloat / Int
encodeURI / decodeURI / encodeURIComponent / decodeURIComponent
02_Number
01_Number.js
02_Number-property.js
03_Number-method.js
Number.isFinite / Number.isInteger
Number.isNaN / Number.isSafeInteger / Number.prototype.toExponential
Number.prototype.toFixed / toPrecision / toString
03_Math
01_Math-property.js
02_Math-method.js
Math.abs(절대값) / round(소수점 이하 반올림한 정수)
Math.ceil(소수점 이하 올림한 정수) / Math.floor(내림한 정수)
Math.sqrt(숫자의 제곱근) / Math.random(난수 반환)
Math.pow (첫번째 인수를 밑으로 두번째 인수를 지수로 거듭제곱) / **(지수연산자)
Math.max / min
04_Date(날짜, 시간)
01_Date.js
02_Date-method.js
Date.now / parse / UTC
연, 월, 일, 시, 분, 초, 밀리초 반환 및 설정
Date.getTime, Date.setTime / Date.prototype.getTimezoneOffset / to___String
05_RegExp
01_RegExp.js (정규 표현식)
02_RegExp-method.js
03_flag-and-pattern.js
flag 종류
pattern / 반복검색
or, \d, \w
^
04_example.js
06_String
01_String.js
02_String-method.js
String.prototype.indexOf
String.prototype.includes / search
String.prototype.startsWith / endsWith / charAt
String.prototype.substring : 부분 문자열 반환 // slice
String.prototype.toUpperCase(Lower) / trim(공백무시)
String.prototype.repeat / replace
String.prototype.split