변수
Exercise1
변수명을 carName 값을 VolvocarName이라는 변수를 작성하고 Volvo 값을 지정하십시오.
Create a variable called carName, assign the value Volvo to it.
var = " ";
Exercise2
x라는 변수를 작성하고 값 50을 지정하십시오.
Create a variable called x, assign the value 50 to it.
var = ;
Exercise3
두 개의 변수 x와 y를 사용하여 5 + 10의 합을 표시합니다.
Display the sum of 5 + 10, using two variables: x and y.
var = ;
var y = 10;
document.getElementById("demo").innerHTML = x y;
Exercise4
z라는 변수를 작성하고 x + y를 지정하고 결과를 경고 상자에 표시하십시오.
Create a variable called z, assign x + y to it, and display the result in an alert box.
var x = 5;
var y = 10;
= x + y;
(z);
Exercise5
한 줄에 다음 이름과 값으로 세 개의 변수를 선언하십시오.
On one single line, declare three variables with the following names and values:
firstName = "John"
lastName = "Doe"
age = 35
var = "John"
lastName =
= ;
'IT > 자바스크립트' 카테고리의 다른 글
[자바스크립트 함수] parseInt/ parseFloat 함수 (0) | 2020.02.19 |
---|---|
[자바스크립트] 여행 준비물 점검 목록 만들기 (0) | 2020.02.13 |
[자바스크립트] 08_랜덤 정렬 (shuffle) (0) | 2020.02.05 |
[자바스크립트] 알고리즘 빅오 표기법 (big-O notation) (0) | 2020.02.04 |
자바스크립트 개요 (0) | 2018.12.02 |