첫 수업인데 크게 리뷰할건 없이 기본적인 내용들이였습니다.
😥 variable 은 변수입니다.
😥 value
😀 변수를 설정할때 첫 글자에는 숫자와 대문자를 넣지 마세요!
😀 변수명에 흔히 사용하는 명사(name)을 설정하지마세요!
말고는 옛날에 했던거라 자세히는 적지 않겠습니다.
Declare variables called 'country', 'continent' and 'population' and
assign their values according to your own country (population in millions)
Log their values to the console
let country = "SouthKorea";
let continet = "Asia";
let population = 50000000;
console.log(country);
console.log(continet);
console.log(population);

시마이!