Core JavaScript 1.5 Reference
MDC
목차 |
[편집] 이 레퍼런스에 대하여
[편집] 전역 개체
- Array
- Boolean
- Date
- Error
- Function
- java
- JavaArray
- JavaClass
- JavaObject
- JavaPackage
- Math
- netscape
- Number
- Object
- Packages
- RegExp
- String
- sun
[편집] 전역 속성
[편집] 전역 함수
- Array
- Boolean
- Date
- decodeURI
- decodeURIComponent
- encodeURI
- encodeURIComponent
- Error
- eval
- Function
- isFinite
- isNaN
- Number
- Object
- parseFloat
- parseInt
- RegExp
- String
[편집] 함수
[편집] 문
- block
- break
- const
- continue
- do...while
- export
- for
- for...in
- for each...in
- function
- if...else
- import
- label
- return
- switch
- throw
- try...catch
- var
- while
- with
[편집] 연산자
- Arithmetic Operators (
+,-,*,/,%,++,--, unary-) - Assignment Operators (
=,+=,-=,*=,/=,>>=,<<=,>>>=,&=,|=,^=) - Bitwise Operators (
&,|,^,~,<<,>>,>>>) - Comparison Operators (
==,!=,===,!==,>,>=,<,<=) - Logical Operators (
&&,||,!) - 특수 연산자:
- Conditional Operator (
condition ? ifTrue : ifFalse) - Comma Operator (
,) - delete Operator
- function Operator
- in Operator
- instanceof Operator
- new Operator
- this Operator
- typeof Operator
- void Operator
- Conditional Operator (
- String Operators (
+and+=as concatenation operators) - Member Operators (
obj.propertyandobj["property"]) - Operator Precedence
[편집] 주석
- Code comments (
//and/* */)