!function() {
alert('hello');
}();
これで実行できるみたい。
bootstrap.jsでこうしてた。
普通は
(function() {
alert('hello');
}());
こうすると思うけど、なにがメリットなんでしょうか?
Go to list of users who liked
More than 5 years have passed since last update.
!function() {
alert('hello');
}();
これで実行できるみたい。
bootstrap.jsでこうしてた。
普通は
(function() {
alert('hello');
}());
こうすると思うけど、なにがメリットなんでしょうか?
Register as a new user and use Qiita more conveniently
Go to list of users who liked