标签: javascript syntax
示例:
var hello = (function(text) { return "hello " + text }("world"))
并且
var hello = (function(text) { return "hello " + text })("world")
它们是一样的吗?