var a = 'global varible'; // 전역 스코프에 있는 변수는 코드 어디서나 참조할 수 있다!

function print() {
  // 함수 블록 내에 있는 변수는, 함수 자신과 함수 몸체 내의 하위 함수에서만 참조할 수 있다!
  var b = 'local varible'; 
  console.log(a); // global varible
  console.log(b); // local varible
}

print();