1. 代码:
var obj = (function(a,b){
	a.prop = b
	return a
}(this,'hello'))
  1. 测试:
console.log(obj.prop)
  1. 输出:
hello
[Finished in 0.4s]