Deep dive 기록 목차

잔잔바리디자이너·2022년 2월 21일
0

Javascript

목록 보기
1/12
post-thumbnail

그간 Webgl에 미쳐서 자바스크립트 지식 없는 채로 Three.js를 배우면서 거꾸로 js를 공부해왔다. 그렇게 어느새 1년이 지나버렸더니 뭐 이것저것 구현은 해 왔는데 기초 공사가 제대로 안 된 느낌이라 다시 처음부터 훑으며 돌아보려고 한다.

  • 3주간 Deep dive Basic js, ES6 빠르게 훑기
  • 아는부분은 훑고 모르는 부분 나왔을 때 공부하면서 기록하기
  • 3/12일 ~ 기초 알고리즘부터 풀어보며 모르는것들 찾아가며 공부
  • 블로그 작성 시 훑은 목차 나열하며 특별히 공부한 부분은 Specify 하여 추가 작성한 블로그 링크로 걸기

목차

1. Declare JavaScript Variables

2022.02.22

  • Why do we need variables?
  • What is variable?
  • CPU and Memory
  • identifier memorizes the memory address of a value
  • keyword: var, function-level scope
  • eight different data types which are undefined,
    null, boolean, string, symbol, bigint, number, and object
  • initiolization and declaration
  • variable hoisting
  • assignment, constant
  • garbage collector
  • memory leak
  • identifier naming convection, reserved word
  • constructor function?

2. Expression and statement

2022.02.25

  • Value and datatype
  • Evaluating expression
  • Literal and notation
  • Literal and expression

3. Data type

  • ES6 provides7 data types
  • primitive type / object reference type
  • data type and memory
  • symbol table
  • typeof

4. Operator

2022.02.26

5. Control statement

2022.02.28

6. Explicit coercion, implicit coercion

2022.03.01

7. Object

8. Primitive type / object

2022.03.03

9. Function

0개의 댓글