function get() { var a = 0; return function abcv() { a++; console.log(a); } } var b = get(); b(); b();