This morning, I was working on some JavaScript code in which I wanted to create a proxy to a native JavaScript constructor (ex. Array, String). In the past, I've often invoked super-class constructors using JavaScript's call() or apply() method . But, in those cases, I had existing sub-class instances that would act as the target context (ie. "this"). ...
Read More ยป