Example:
var hello = (function(text) {
return "hello " + text
}("world"))
And
var hello = (function(text) {
return "hello " + text
})("world")
are they the same?
Example:
var hello = (function(text) {
return "hello " + text
}("world"))
And
var hello = (function(text) {
return "hello " + text
})("world")
are they the same?