These days most of my work is related to js developing.
However I suddenly found that I am confused with some questions.
Check this code(I add one method to a custom class):
MyCustomClass.prototype.fun=function(xx){
this.options={.....}
function innerFun01(){}
function innerFun02(){}
}
Now,use it.
var mcc=new MyCustomClass();
mcc.fun(xxxx);
var mcc2=new MyCustomClass();
mcc2.fun(xxxx);
Now,I wonder how many copies of the function "innerFun01" and "innerFun02" will be created in the memory?
I am really confused.