How can I add an object property to the global object in rhino javascript

后端 未结 5 1901
迷失自我
迷失自我 2021-02-15 18:48

I have some properties in an object that I would like to add to the global namespace. In javascript on the browser I could just add it to the window object like so:

5条回答
  •  忘掉有多难
    2021-02-15 19:04

    I've not used rhino but couldn't you just use var?

    i.e.

    
    var foo = myObject.foo;
    foo();
    

    Edit: Damn knew there'd be a catch! Miles' suggestion would be the go in that case.

提交回复
热议问题