Reputation: 18675
I cannot find the doc for the function GetObject
available in Microsoft Javascript.
I tried with no luck https://learn.microsoft.com/en-us/search/?terms=javascript%20getobject where I found https://learn.microsoft.com/en-us/office/vba/language/reference/user-interface-help/getobject-function which could be good enough for me even if it is related to Visual Basic for Applications... but I would like to find the doc for Javascript.
Upvotes: 1
Views: 357
Reputation: 16682
Microsoft's implementation of JavaScript (ECMAScript Version 3) is known as JScript. Like VBScript it’s been hidden away in the Microsoft Documentation archives.
The function can be found in the language reference under Functions. Here is a direct link to GetObject()
.
Upvotes: 1