유데미 JavaScript - Values and Variables

MK·2022년 5월 2일

Udemy 강의!

목록 보기
1/12

첫 수업인데 크게 리뷰할건 없이 기본적인 내용들이였습니다.

😥 variable 은 변수입니다.
😥 value

😀 변수를 설정할때 첫 글자에는 숫자와 대문자를 넣지 마세요!
😀 변수명에 흔히 사용하는 명사(name)을 설정하지마세요!

말고는 옛날에 했던거라 자세히는 적지 않겠습니다.

😍과제가 끝나고 과제!

  1. Declare variables called 'country', 'continent' and 'population' and
    assign their values according to your own country (population in millions)

  2. Log their values to the console

let country = "SouthKorea";
let continet = "Asia";
let population = 50000000;

console.log(country);
console.log(continet);
console.log(population);

시마이!

profile
그라타타타

0개의 댓글