Skip to content

Instantly share code, notes, and snippets.

@khg0712
Created May 1, 2018 14:47
Show Gist options
  • Save khg0712/9d79c0357a0098b23f59db25c9947758 to your computer and use it in GitHub Desktop.
Save khg0712/9d79c0357a0098b23f59db25c9947758 to your computer and use it in GitHub Desktop.
var a = "a"; //a는 이제 string 타입
a = 1; //a는 이제 number 타입
a = true; //a는 이제 boolean 타입
a = null //a는 이제 null 타입
a = undefined //a는 이제 undefined 타입
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment