Memory usage of prototype in jscript

Milovbteam

New Member
I would like to know if using prototype in jscript on a classic asp server uses more server memory when multiple users are connected than references to functions or is it the same.Example:\[code\]function SomeClass(){ this.someMethod = this.myfunc;}SomeClass.prototype.myfunc = function(...\[/code\]as opposed to:\[code\]function SomeClass(){ this.someMethod = myfunc;}function myfunc(...\[/code\]
 
Back
Top