백견이불여일타(百見而不如一作)
실행을 하지 않아도 알아야한다.
const x = 'x';
function c(){
const y = 'y';
console.log('c');
}
function a(){
const x = 'x';
console.log('a');
function b(){
const z ='z';
console.log('b');
c();
}
b();
};
a(); // a,b,c
c(); // c