// 선언 및 초기화

var testVar = 0;


function testFunc()  {...}


testVar = testFunc;


// 호출

testVar();


변수에다 함수 리턴값 넣고


이 변수를 함수호출이 됨? ㄷㄷ