我在javascript中有这样的代码:
var func = function(){
console.log('hello moto');
};
func.another = function(){
console.log('another method outside function');
};
func(); // output: hello moto
func.another() // output: another method outside function
我仍然不知道怎么称呼这个。但我想使用一些方法坚持这样的功能名称。我想知道这个方法在所有浏览器上的功能。我使用Chrome + Safari + Firefox(所有当前版本)进行测试。它工作得很好。
该代码是否适用于所有主流浏览器?谢谢!