자바스크립트 연습문제(변수)
변수 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("dem..