01. 변수 : 데이터 저장

변수는 데이터를 저장하는 저장소 입니다. 이 저장소에는 숫자, 문자, 함수, 객체 등을 저장할 수 있습니다.

var x = 100;                //변수 x에 숫자 100을 저장함
var y = 200;                //변수 y에 숫자 200을 저장함
var z = "javascript";       //변수 z에 문자열 "javascipt"를 저장함
    
document.wtite(x);
document.wtite(y);
document.wtite(z);
결과보기

02. 변수 : 데이터 저장 + 데이터 변경

변수는 데이터를 저장하고, 변경도 할 수 있습니다.

let x = 100;
let y = 200;
let z = "javascript";
    
x = 300;        //변수 x의 값이 100에서 300으로 변경됨
y = 400;        //변수 y의 값이 200에서 400으로 변경됨
z = "jquery";   //변수 z의 값이 "javascript"에서 "jquery"로 변경됨
    
document.write(x);
document.write(y);
document.write(z);
결과보기

03. 변수 : 데이터 저장 + 데이터 변경 + 데이터 추가

변수는 데이터를 저장소이고, 데이터를 변경 또는 추가 할 수 있습니다.

let x = 100;
let y = 200;
let z = "javescript";
    
x += 300;       //변수 x에 300을 더해줌
y -= 400;       //변수 y에 400을 뻬줌
z += "jquery";  //문자열 z에 "jquery"이 추가됨
    
document.write(x);
document.write(y);
document.write(z);
결과보기

04. 변수의 종류 : 지역변수 + 전역변수

전역변수는 함수 블록{} 밖이나 안에서 자유롭게 사용 가능하지만, 지역변수는 함수 블록{} 내에서만 사용 할 수 있습니다.

let x = 100;        //전역변수
let y = 200;        //전역변수
    
function func(){
    let x = 100;                   //지역변수
    let z = "javascript";    //지역변수
        x = 200;                  // 지역변수 100 --> 200으로 변경
        y = 300;                 // 전역변수 200 --> 300으로 변경
    
    document.write("함수 안");
    document.write(x);
    document.write(y);
    document.write(z);
}
func();
    
document.write("함수 밖");
document.write(x);
document.write(y);
document.write(z); 
결과보기
함수 안
200
300
javascript
함수 밖
100
300
undifined

05. 상수 : 데이터 저장 + 데이터 변경(X)

상수는 데이터를 저장할 수 있으며, 변경은 할 수 없습니다. 상수(const)는 이미 선언한 상수에 대해 중복해서 선언할 수 없고, 상수에 값은 재지정할 수도 없습니다.

const x = 100;
const y = 200;
const z = "javascript";
    
// x = 300;     //변경할 수 없음
// y = 400;
// z = "jquery";
    
document.write(x);
document.write(y);
document.write(z);
결과보기

06. 배열 : 데이터 저장(여러개) : 표현 방법1

const arr = new Array();
arr[0] = 100;
arr[1] = 200;
arr[2] = "javascript";
    
document.write(arr[0]);
document.write(arr[1]);
document.write(arr[2]);
결과보기

07. 배열 : 데이터 저장(여러개) : 표현 방법2

const arr = new Array(100, 200, "javascript");
    
document.write(arr[0]);
document.write(arr[1]);
document.write(arr[2]);
결과보기

08. 배열 : 데이터 저장(여러개) : 표현 방법3

const arr = [];
arr[0] = 100;
arr[1] = 200;
arr[2] = "javascript";
    
document.write(arr[0]);
document.write(arr[1]);
document.write(arr[2]);
결과보기

09. 배열 : 데이터 저장(여러개) : 표현 방법4

const arr = [100, 200, "javascript"];
    
document.write(arr[0]);
document.write(arr[1]);
document.write(arr[2]);
결과보기

10. 객체 : 데이터 저장(키와 값) : 표현 방법1

객체의 데이터는 '이름: 값'의 쌍으로 이루어져 있으며 이것을 속성(Properties) 라고 합니다.

const obj = new Object();
    
obj[0] = 100;
obj[1] = 200;
obj[2] = "javascript";
    
document.write(obj[0]);
document.write(obj[1]);
document.write(obj[2]);
결과보기

11. 객체 : 데이터 저장(키와 값) : 표현 방법2

const obj = new Object();
obj.a = 100;
obj.b = 200;
obj.c = "javascript";
    
document.write(obj.a);
document.write(obj.b);
document.write(obj.c);
결과보기

12. 객체 : 데이터 저장(키와 값) : 표현 방법3

약식으로 사용 가능 합니다.

const obj = {}
    
obj.a = 100;
obj.b = 200;
obj.c = "javascript";
    
document.write(obj.a);
document.write(obj.b);
document.write(obj.c);
결과보기

13. 객체 : 데이터 저장(키와 값) : 표현 방법4

const obj = {a:100, b:200, c:"javascript"};
    
document.write(obj.a);
document.write(obj.b);
document.write(obj.c);
결과보기

14. 객체 : 배열 속에 객체

const obj = [
    {a:100, b:200},
    {c:"javascript"}
];
    
document.write(obj[0].a);
document.write(obj[0].b);
document.write(obj[1].c);
결과보기

15. 객체 : 객체 속에 배열

const obj = {
    a: 100,
    b: [200,300],
    c: {x:400, y:500},
    d: "javascript"
}
    
document.write(obj.a);
document.write(obj.b[0]);
document.write(obj.b[1]);
document.write(obj.c.x);
document.write(obj.c.y);
document.write(obj.d);
결과보기

16. 객체 : 객체 속에 변수

const a = 100;
const b = 200;
const c = "javascript";
    
const obj = {a, b, c}
    
document.write(obj.a);
document.write(obj.b);
document.write(obj.c);
결과보기

17. 객체 : 객체 속에 함수

const obj = {
    a : 100,
    b : [200, 300],
    c : {x:400, y:500},
    d : "javascript",
    e : function(){
        document.write("자바스크립트가 실행되었습니다.");
    },
    f : function(){
        document.write( obj.d + "가 실행되었습니다.");
    },
    g : function(){
        document.write( this.d + "가 실행되었습니다.");     //this는 여기서 'd'를 가르킴
    }
}
      
document.write(obj.a);
document.write(obj.b[0]);
document.write(obj.b[1]);
document.write(obj.b);
document.write(obj.c.x);
document.write(obj.c.y);
document.write(obj.c);      //object로 나옴 
document.write(obj.d);
obj.e();
obj.f();
obj.g();
결과보기
100
200
300
200,300
400
500
[object Object]
javascript
자바스크립트가 실행되었습니다.
javascript가 실행되었습니다.
javascript가 실행되었습니다.