此代码直接复制自:
// Set the singleton value to the return value of the self-
// executing function block.
var singleton = (function(){
// Declare a private variable.
var message = "Stop playing with your context!";
this.getMessage = function(){
return( message );
};
// Return this object reference.
return( this );
}).call( {} );
// alert the singleton message.
alert( "Message:", singleton.getMessage());
我的想法是我可以使用它来更好地包含我的程序中的变量和函数。
但是,当我尝试在 JSfiddle 中运行代码时:
它不返回消息。我错过了什么?