私はJSの次のスニペットを持っています
var Customer : function()
{
this.ShipProduct : function()
{
//Logic for shipping product. If shipping successful, notify user
//Here I am trying to call Notify
//this.Notify(); // does not work
}
this.Notify = function()
{
//Logic for notify
}
}
ShipProductからNotifyを呼び出すにはどうすればよいですか?