- 자바스크립트에서는 변수를 사용할 때 따로 자료형을 지정하지 않는다. 값을 저장하는 순간 저장하는 데이터에 따라 자료형이 정해진다.
- typeof ==> 자료형 확인
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script>
a = 5;
b= "hello";
c = true;
d = 57.6;
e = function(){alert("OK");}
f = {name :"호이길동", age :20}
console.log("a:", typeof(a));
console.log("b:", typeof(b));
console.log("c:", typeof(c));
console.log("d:", typeof(d));
console.log("e:", typeof(e));
console.log("f:", typeof(f));
</script>
</body>
</html>
변수 선언
- var : 중복 선언 가능
- let : 중복 선언 불가능
- const : 상수
함수 만들기
- function pro(){}
- var pro = function(){}
- function add(a, b){} --> 매개변수가 있는 함수
- function add(a,b){let r = a+b; return r; }--> 리턴 값이 있는 함수
'Kosta DevOps 과정 280기 > Java' 카테고리의 다른 글
새로운 노드 생성하기 (0) | 2024.07.11 |
---|---|
이벤트 (0) | 2024.07.11 |
문서 객체 조작 (0) | 2024.07.10 |
문서 객체 모델 (0) | 2024.07.10 |
객체 (0) | 2024.07.10 |