Say, I have two functions:
function foo() { this.lorem = \'ipsum\'; } function boo() { console.log(this.lorem); }
And I want to insert the
In the event you want to keep them separate:
function foo() { this.lorem = 'ipsum'; boo(this); } function boo(element) { console.log(element.lorem); }