1. Confirm and prompt
We can make pop-up boxes appear! confirm("I am ok");
prompt("Are you ok?");
2. Data types
a. numbers (e.g. 4.3
, 134
)
b. strings (e.g. "dogs go woof!"
, "JavaScript expert"
)
c. booleans (e.g. false
, 5 > 4
)
3. Conditionals
If the first condition is met, execute the first code block. If it is not met, execute the code in the else
block. See the code on the right for another example.
'Java script' 카테고리의 다른 글
구글 맵을 이용해서 현재 위치 표시하기 (0) | 2015.11.22 |
---|