関数について
JavaScript
通常の関数
function kono (){
console.log('hageee');
}
kono();
有名関数
var chigaudaro = function kono (){
console.log('hageee');
};
無名関数
var kono = function (){
console.log('hageee');
};
即時関数
(function kono(){
console.log('hageee');
})();
jQuery
$(function(){
console.log('hageee');
});
jQuery(function(){
console.log('hageee');
});
$
= jQuery