I read on MSDN that to improve scripting efficiency, you can use self to make implicit window references explicit.
Do you know if this is true? Does this basically mean that for instance calling
self.locationis somewhay more efficient than calling simplylocationwith nowindowopject before?Since the MSDN text is referred to the
selfand notwindow, does this performance increase happens only usingself? According to herewindowandselfandwindow.selfare the same thing, so it shouldn't matter what we use, i'm asking only to make sure.Moreover following what stated in MSDN calling
window.selfshould be somehow more performant than callingselfbecause this last one is a property ofwindowso by callingwindow.selfwe use an explicit ref.
Thanks