js 함수 설명

656 단어 JS학습 노트
var F = function(){
            getN = function(){
                console.log("1")
            }
            return this;
        }
        F.getN = function(){
            console.log("2");
        }
        F.prototype.getN = function(){
            console.log("3")
        }
        var getN = function(){
            console.log("4")
        }
        function getN(){
            console.log("5")
        }

        getN()
        F.getN()
        F().getN()
        new F().getN()
        getN()

기록, 메모: 변수 식 성명 은 함수 식 성명 보다 큽 니 다. 쉽게 말 하면 변수 가 올 라 갈 때 변수 성명 은 함수 성명 뒤에 있 습 니 다.

좋은 웹페이지 즐겨찾기