I have a question about javascript like below:
__test(function(a,b,c){"use strict"; ....
__test(function(a,b,c){"use strict"; ....
__test(function(a,b,c){"use strict"; ....
__test(function(a,b,c){"use strict"; ....
if we have the above code, how functions will be executed? I know that Javascript does not support function overloading, but I want to know if use strict
directive changes this behavior.