개발일지 210809

이동섭·2021년 8월 9일
0

대구AI스쿨 개발일지

목록 보기
30/48

31일차

강의노트

네이버 게임 좌측 영역(2)

목표


노트

  • 특별히 새로운 내용은 없었음
  • 반복적인 작업에 대해 앞서 내용을 잘 활용하는 것에 실습 중점을 두기.

추가학습

자바스크립트 2강(1)

기본 데이터타입 중 null, undefined

기본(원시) 데이터타입

https://developer.mozilla.org/ko/docs/Web/JavaScript/Data_structures

위 링크를 참조하여 학습하자.

null, undefined

  • null : 변수를 초기화 하여, 명시적으로 빈 값을 변수 안에 할당한 상태.(공집합과 비슷한 듯?)
  • undefined : 변수를 선언만 한 상태. (변수의 디폴트 값?)

js

var n = null
var u;

console.log(n);
console.log(u);

console

null
undefined

typeof로 확인할 경우

  • typeof : 해당 데이터의 타입을 확인하는 명령어

js

console.log(typeof 10);
console.log(typeof "hello world");

console

number
string

  • null과 undefined의 경우

js

console.log(typeof null);
console.log(typeof undefined);

console

object
undefined

이슈-솔루션/미해결(질문)

x

학습 소감

겨우 짬을 내서 추가학습을 조금 할 수 있었다.

profile
responsibility

0개의 댓글

관련 채용 정보