Did anyone know the code which define like this:
!function(window, undefined) {
// do something
} (window)
By searching in google, I can understand the syntax like:
function(window, undefined) {
// do something
} (window)
But I don't figure out any article about the syntax have "!" operator.