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
- Prototype
- 참조자료형
- frontend
- OOP
- JS
- 자바스크립트
- 원시자료형
- css
- 계산기
- 개발자
- cta button
- WAI-ARIA
- 프로토타입
- Router
- Javascript #코드스테이츠
- html
- css in js
- 회고
- CDD
- 객체지향
- 호스트인식
- self reliance
- 코드스테이츠
- codestates
- 프론트엔드
- 코드스테이스
- condestates
- JavaScript
- codestate
- cta버튼
Archives
- Today
- Total
jh.nrtv
JS 변수, 타입 - [Codestates] Section1 본문
변수
1. 기초
let sum = 1;
let sum -> 변수 선언 ( 보관함 확보 )
sum =1 -> 보관함에 데이터 저장
let sum = 1 -> 선언과 할당 동시에
2. 구구단출력
let num = 3;
console.log(num * 1) // 2
console.log(num * 2) // 4
console.log(num * 3) // 6
console.log(num * 4) // 8
console.log(num * 5) // 10
console.log(num * 6) // 12
console.log(num * 7) // 14
console.log(num * 8) // 16
console.log(num * 9) // 18
타입
1. 타입의 종류
숫자 number
문자열 String
참/거짓 Boolean
배열 -> 여러 타입이 서로 섞인 타입 (자료형)
let fruits=[
'banana', 'apple', 'pineapple'];
객체 -> 여러 타입이 서로 섞인 타입 (자료형)
let person = {
name : 'JH',
age: 10,
isStudent: True
};
undefined ->또한 타입의 일종 (변수에 값이 할당되지 않은 것
함수 -> 또한 타입의 일종
2. typeof 메소드
특정 값의 타입을 확인하기 위함
console.log(typeof 1) // number
console.log(typeof '1') // string
console.log(typeof (1 < 2)) // boolean
let number = 1;
console.log(typeof number) // 변수를 직접 넣어 타입을 알아볼 수 있음
let string = '1';
console.log(typeof string) // 변수를 직접 넣어 타입을 알아볼 수 있음2
'javascript' 카테고리의 다른 글
JS 원시 자료형과 참조 자료형 - [Codestates] Section1 (0) | 2022.11.07 |
---|---|
JS 배열 (array) - [Codestates] Section1 (0) | 2022.11.03 |
JS 반복문 - [Codestates] Section1 (0) | 2022.10.25 |
JS 기초제어문 - 조건문 , 문자열 - [Codestates] Section1 (0) | 2022.10.24 |
JS 함수 - [Codestates] Section1 (0) | 2022.10.21 |