Javascript syntax for abbreviating repeated access to same identifier
- by yongjieli
Hi all
I wanted to ask if there is a formal way of describing the following code, whereby we can access the same object repeatedly without re-typing the object's identifier:
myObj.render(1).render(2).print();
I didn't know how to describe it when trying to form a question; I wanted to know whether or not something like this is possible in javascript, I know that I can do it in VB:
myObj.render(1)
if(foo == 'bar')
.render(2)
.print();
Thanks!