javascript中匿名函数挪用的多种要领

现在,以下多种体式格局中,只能邃晓第一种和第二种,其他都不邃晓道理,列位大神能不能诠释下?

体式格局1,挪用函数,获得返回值。强迫运算符使函数挪用实行

javascript(function(x,y){
    alert(x+y);
    return x+y;
}(3,4)); 

体式格局2,挪用函数,获得返回值。强迫函数直接量实行再返回一个援用,援用再去挪用实行

javascript(function(x,y){
    alert(x+y);
    return x+y;
})(3,4);

这类体式格局也是许多库爱用的挪用体式格局,如jQuery,Mootools。

体式格局3,运用void

javascriptvoid function(x) {
      x = x-1;
      alert(x);
}(9);

体式格局4,运用-/+运算符

javascript-function(x,y){
    alert(x+y);
    return x+y;
}(3,4);

+function(x,y){
    alert(x+y);
    return x+y;
}(3,4);

--function(x,y){
    alert(x+y);
    return x+y;
}(3,4);

++function(x,y){
    alert(x+y);
    return x+y;
}(3,4);

体式格局5,运用波浪符(~)

javascript~function(x, y) {
    alert(x+y);
   return x+y;
}(3, 4);

体式格局6,匿名函数实行放在中括号内

javascript[function(){
   console.log(this) // 浏览器得控制台输出window
}(this)]

体式格局7,匿名函数前加typeof

javascripttypeof function(){
   console.log(this) // 浏览器得控制台输出window
}(this)

体式格局8,匿名函数前加delete

javascriptdelete function(){
   console.log(this) // 浏览器得控制台输出window
}(this)

体式格局9,匿名函数前加void

javascriptvoid function(){
   console.log(this) // 浏览器得控制台输出window
}(this)

体式格局10,运用new体式格局,传参

javascriptnew function(win){
   console.log(win) // window
}(this)

体式格局11,运用new,不传参

javascriptnew function(){
    console.log(this) // 这里的this就不是window了
}

体式格局12,逗号运算符

javascript1, function(){
    console.log(this) // window
}();

体式格局13,按位异或运算符

javascript1^function(){
    console.log(this) // window
}();

体式格局14,比较运算符

javascript1>function(){
    console.log(this) // window
}();
    原文作者:M不是W
    原文地址: https://segmentfault.com/a/1190000000600574
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞