본문 바로가기
css

전역 변수

by code-box 2021. 10. 12.
반응형

함수 외부에 변수를 선언합니다.

var oneVariable;

function setVariable(){
      oneVariable = "Variable set from within a function!";
}

function getVariable(){
      alert(oneVariable); // Outputs "Variable set from within a function!"
}

또는 창 개체에 첨부합니다.

function setValue() {
      window.myValue = "test";
}

function getValue() {
      alert(window.myValue); // "test" (assuming setValue has run)
}

댓글