Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Math.floor()
- Parent
- calc.minus
- 파일질라설치오류
- toFixed()
- SUB함수
- Math.ceil()
- calc.plus
- 파일질라다운로드
- is_check
- Excel
- push오류
- hide
- 파일질라설치
- index %
- Git
- FileZilla다운로드
- removeClass
- selectedIndex
- 소스트리인증실패
- 증가값
- slideUp
- ctrl+/
- excel중복체크
- 주석이 먹히지 않을 때
- addClass
- 1521
- Math.round()
- selectoptions
- FileZilla설치
Archives
- Today
- Total
잡동사니에도 사랑을
[JavaScript] 변수 선언 본문
728x90
반응형
[21.09.10] exam02 - 변수 선언
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
/* var num;
let msg; */
Java Script에선 굳이 변수 선언할 필요 없다
var은 하나의 general, 일반적인 타입이고 고정시킨 것이 아니다.
num = 12345;
msg = "Hello";
document.write(num+"<br>");
document.write(msg+"<br>");
num = "aaa";
document.write(num+"<br>");
let exist = true; //boolean
document.write(exist+"<br>");
let value1 = null; // 강압적으로 null을 집어넣게 되면 null이 찍혀져 나온다.
let value2; // 선언만 하고 값을 할당하지 않으면 undefined가 찍힌다.
document.write(value1+"<br>"); //null
document.write(value2+"<br>"); //undefined
</script>
</head>
<body>
</body>
</html>
<!--
변수
- 변수의 자료형은 값이 할당될 때 자동으로 결정된다.
- var, let으로 선언(let은 구역을 벗어나면 소멸되는 완벽한 지역 변수이다.)
//선언
var a;
var b;
//할당
a = 10;
b = 43.5;
-->
728x90
반응형
'JAVA_EE > JavaScript' 카테고리의 다른 글
[JavaScript] 학점 매기기 (0) | 2021.09.10 |
---|---|
[JavaScript] 연산자 우선순위 (0) | 2021.09.10 |
[JavaScript] 대입 연산자 (0) | 2021.09.10 |
[JavaScript] 산술 연산자 (0) | 2021.09.10 |
[JavaScript] 내용 출력 (0) | 2021.09.10 |