編集:7年後、この答えはまだ時折賛成票を獲得しています。ランタイムチェックを探している場合は問題ありませんが、Typescript、または場合によってはFlowを使用したコンパイル時のタイプチェックをお勧めします。詳細については、上記のhttps://stackoverflow.com/a/31420719/610585を参照してください。
元の答え:
言語に組み込まれていませんが、ご自分で簡単に行うことができます。Vibhuの答えは、Javascriptでの型チェックの典型的な方法と私が考えるものです。より一般的なものが必要な場合は、次のように試してください:(開始するための単なる例)
typedFunction = function(paramsList, f){
//optionally, ensure that typedFunction is being called properly -- here's a start:
if (!(paramsList instanceof Array)) throw Error('invalid argument: paramsList must be an array');
//the type-checked function
return function(){
for(var i=0,p,arg;p=paramsList[i],arg=arguments[i],i<paramsList.length; i++){
if (typeof p === 'string'){
if (typeof arg !== p) throw new Error('expected type ' + p + ', got ' + typeof arg);
}
else { //function
if (!(arg instanceof p)) throw new Error('expected type ' + String(p).replace(/\s*\{.*/, '') + ', got ' + typeof arg);
}
}
//type checking passed; call the function itself
return f.apply(this, arguments);
}
}
//usage:
var ds = typedFunction([Date, 'string'], function(d, s){
console.log(d.toDateString(), s.substr(0));
});
ds('notadate', 'test');
//Error: expected type function Date(), got string
ds();
//Error: expected type function Date(), got undefined
ds(new Date(), 42);
//Error: expected type string, got number
ds(new Date(), 'success');
//Fri Jun 14 2013 success