Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のように、変数をオブジェクトと関数の両方として使用する人を見てきました。
myClass();
と
myClass.myMethod();
彼らはどのようにそれをしますか?
関数は Javascript のオブジェクトであるため、プロパティを設定できます (他の関数やそれらのオブジェクトなど)。
function myClass() { //blah blah } myClass.myMethod = function() { //your other function } myClass.myMethod();