console.log('my'+' cat'); //my cat
console.log('1'+2); //12
console.log(`string literals:
'''
1+2= ${1+2}`); //string literals:
///'''
///1+2=3
console.log("ellie's \\n\\t book") // ellie's \\n : 줄바꿈 \\t : 수평 탭
// book
let counter = 2;
const preIncerment = ++counter; //3
//counter = counte +1;
//preIncrement = counter;
const postIncerment = counter++; //3
//postIncrement = counter;
//counter = counte +1;
and 는 Null 체크할 때도 사용됨
→ object가 null이면 false가 되기 때문에 뒤에가 실행이 안됨 . 즉, null object가 null이 아닐때만 object에 something이라는 value를 가져올 수 있음