본문 바로가기
JAVASCRIPT

자바스크립트 연습코드1

by devorldist 2022. 4. 30.
728x90
반응형
SMALL
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>javascript training</title>
</head>
<body>
    <!-- 자바스크립트는 html 위에서 동작.
    <script> 태그를 사용. 동적언어임. -->
   
    <script>
        console.log('Hello devorld!');
        console.log(1 + 2);

        // 변수의 선언 및 초기화
        var total;
        total = 100;
        var a = 1;
        var b = 2;
        var c = 3;

        console.log(a + b + c); //6

        //변수의 값 변경
        total = 70;
        console.log(total);

        //변수의 값 복사
        var copyResult = total;
        total = 100;
        console.log(copyResult); //70

        total = total * 2;
        console.log(total); //200

    </script>

</body>
</html>
 
출처 : 학원자료
728x90
반응형
LIST