Say, I have two functions:
function foo() { this.lorem = \'ipsum\'; } function boo() { console.log(this.lorem); }
And I want to insert the
Like this?
function foo() { this.lorem = 'ipsum'; console.log(this.lorem); }
In all seriousness, your question is not clear enough to be reliably answered.