Copy //Use strict!
//added in ES 5
//use this for Vanilla Javascript
'use strict';
2. Variable : 변수, 변경될 수 있는 값
Variable, read & write : 메모리의 값을 읽고 쓰기가 가능
Copy //let (added in ES6)
let name = 'ellie';
console.log(name); //ellie
name = 'hello';
console.log(name); //hello
2-1. Block scope / global scope
Copy //block scope
{
let name = 'ellie';
console.log(name);
name = 'hello';
console.log(name);
}
//global scope
let globalName = 'global name';
var hoisting (move declaration from bottom to top)
어디에 선언했는지 상관없이 항상 제일 위로 선언을 끌어올려 버리는 것
3. Constant : 상수, 한 번 할당하면 값이 절대 바뀌지 않음
Constant, read only : 값을 할당하면 읽기만 가능, 다시 다른 값을 쓰는 것이 불가능
" Favor Immutable Data type Always "
constant 는 변하지 않는 값으로, 개발자들이 선호하는 immutable data type
Copy const dayInWeek = 7;
const maxNumber = 5;
4. Variable types : 데이터 타입
Primitive Type = value로 값이 저장됨
ex) let name → ellie
Object Type = 실제로 object를 가리키는 reference 메모리에 저장됨
ex) const ellie 객체 할당 → reference → name / age → ellie / 20
number infinity, NaN bigInt string boolean null & undefiend symbol
Copy const count = 17; //integer(정수)
const size = 17.1 //decimal number(소숫점)
console.log(`value:${count}, type:${typeof count}`);
console.log(`value:${size}, type:${typeof size}`);
Copy const infinity = 1 / 0; //infinity
const negativeInfinity = -1 / 0; //-infinity(네거티브 인피니티)
const nAn = 'not a number' / 2; //NaN(not a number)
bigInt : 길이의 제약 없이 정수를 다룰 수 있게 해주는 숫자형
- Chrome과 Firefox에서만 지원 됨 (fairly new, don't use it yet)
- 정수 끝에 n 을 붙이거나 함수 bigInt를 호출하면 됨
Copy const bigInt = 1234567890123456789012345678901234567890n; //over(-2*53 ~ 2*53)
Copy const char = 'c';
const brendan = 'brendan';
const greeting = 'hello' + brendan; //string + 변수
console.log(`value : ${greeting}!`); //${변수}
const helloBob = `hi${brendan}!`; //``백틱 - template literals(string)
console.log (`value: ${helloBob}, type:${typeof helloBob}`);
console.log('value: ' + helloBob + 'type:' + typeof helloBob);
false : 0, null, undefined, naN, ' '
true : any other value
Copy const canRead = true;
const test = 3 < 1;
console.log (`value:${canRead}, type:${typeof canRead}`);
//value:true, type:boolean
console.log(`value:${test}, type:${typeof test}`);
//value:false, type:boolean
null : 변수를 선언하고 빈 값을 할당한 상태(빈 객체)
unedfined : 변수에 값이 할당되지 않은 상태
Copy //null
let nothing = null;
console.log (`value:${nothing}, type:${typeof nothing}`);
//value:null, type:object
//unedfined
let x;
console.log (`value:${x}, type:${typeof x}`);
//value:undefined, type:undefined
symbol : 고유한 식별자가 필요하거나, 우선순위를 줌
주어진 string에 상관없이 고유한 식별자를 만들 때 사용되어 짐
*주의
심볼 바로 출력하게 될 때 에러가 발생하게 됨
.description 을 이용해 string으로 변환 하여 출력해야 함
Copy const symbol1 = Symbol('id');
const symbol2 = Symbol('id');
console.log(symbol1 ===symbol2); //false
const gssymbol1 = Symbol.for('id');
const gssymbol2 = Symbol.for('id');
console.log(gssymbol1 ===gssymbol2); //true
console.log(`value: ${symbol1.description}, type: ${typeof symbol1}`);
//value: id, type: symbol
5. Dynamic typing (동적타이핑, Dynamically typed language)
JS는 선언 시 어떤 타입인지 선언하지 않고 프로그램이 동작할 때 할당 타입이 변경될 수 있음
Copy let text = 'hello';
console.log(`value : ${text}, type : ${typeof text}`);
// value : hello, type : string
text = 1;
console.log(`value : ${text}, type : ${typeof text}`);
// value : 1, type : number
text = '7' + 5; //string + number = ?
console.log(`value : ${text}, type : ${typeof text}`);
// value : 75, type : string\
// 5를 string type으로 변환해서 string + string이 됨
text = '8'/ '2';
console.log(`value : ${text}, type : ${typeof text}`);
// value : 4, type : number(문자를 나누었지만 숫자값으로 타입이 변경됨)