Appel Javascript fonction parent

Question à l'intérieur de la description

function Parent(){
    this.alertParent(){
        alert("Parent alert");
    }

    function child(){
        //how can I call to this.alertParent() from here without passing any  
        //parameters?
    }
}

OriginalL'auteur Ilya Gazman | 2012-06-09