我看起来很公平,所以如果这已经得到回答,请原谅我。
我也很好奇实际的术语是什么;我正在处理的论点类型是否“模棱两可”?
无论如何,问题是我希望能够调用这样的函数:
prompt(_.define(variable, "DEFAULT VALUE"));
基本上,这样变量就可以有默认值。
但是,每次我尝试这样做时,都会收到此错误:
Timestamp: 6/11/2012 1:27:38 PM
Error: ReferenceError: thisvarisnotset is not defined
Source File: http://localhost/js/framework.js?theme=login
Line: 12
这是源代码:
function _() {
return this;
};
(function(__) {
__.defined = function(vrb, def) {
return typeof vrb === "undefined" ? ((typeof def === "undefined") ? null : def) : vrb;
};
})(_());
prompt(_.defined(thisvarisnotset, "This should work?"), "Can you see this input?");
不知道它为什么这样做?我之前在函数中将未定义的变量称为参数,它工作得很好。