var x = function() { return a + b }; y = Function('a', 'b', 'return '+x)(1, 2); y() // 3