当前位置: 首页 > news >正文

wordpress主题搜索引擎郑州粒米seo外包

wordpress主题搜索引擎,郑州粒米seo外包,网络广告策划的流程顺序为,it运维平台它们之间的区别: (1)箭头函数没有自己的this。 (2)不可以当作构造函数,不可以对箭头函数使用new命令,否则抛出错误。 (3)不可以使用arguments对象,该对象在函…

它们之间的区别:
(1)箭头函数没有自己的this。
(2)不可以当作构造函数,不可以对箭头函数使用new命令,否则抛出错误。
(3)不可以使用arguments对象,该对象在函数体内不存在。如果要用,可以用 rest 参数代替。
(4)不可以使用yield命令,箭头函数不能用作 Generator 函数。

下面结合代码来解析:第一点和第二点

1、不可以当作构造函数,也就是说,不可以对箭头函数使用new命令,否则会抛出一个错误

<script>
//箭头函数
let demo01 = ()=>{console.log("demo01");
}let demo01Fun =new demo01();</script>

输出结果:
在这里插入图片描述

<script>
//普通函数
function demo02(){console.log("demo02");
}let demo02Fun =new demo02();</script>

在这里插入图片描述

2、箭头函数没有自己的this对象
下面代码通过call函数给函数指定了this{id:42}

<script>function demo01() {//箭头函数setTimeout(() => {console.log('id:', this.id);}, 100);
}var id = 21;demo01.call({ id: 42 });</script>

输出结果:
在这里插入图片描述
但是同样是调call函数指定this{id:42},为何输出的却是全局中id= 21呢?

<script>//普通函数function demo02() {setTimeout(function () {console.log('id:', this.id);}, 100);}var id = 21;demo02.call({ id: 42 });</script>

在这里插入图片描述
下面给代码加上断点调试一下看看:

<script>//普通函数function demo02() {debugger;setTimeout(function () {debugger;console.log('id:', this.id);}, 100);}debugger;var id = 21;demo02.call({ id: 42 });
</script>

代码运行到第一个断点时,Global中存在id=21
在这里插入图片描述
代码运行到第二断点处,此时出现方法demo02的局部变量Local,this指向的是{id:42}
在这里插入图片描述
代码运行到定时器时,this指向的windows,id=21。
在这里插入图片描述
而定时器中是箭头函数的,这时this指向的{id:42},从这可以看出箭头函数继承了调用它时的this。
也就是:
它没有自己的this对象,内部的this就是定义时上层作用域中的this。也就是说,箭头函数内部的this指向是固定的,相比之下,普通函数的this指向是可变的。

箭头函数没有this,箭头函数的ES5等价写法如下:

// ES6
function foo() {setTimeout(() => {console.log('id:', this.id);}, 100);
}// ES5
function foo() {var _this = this;setTimeout(function () {console.log('id:', _this.id);}, 100);
}

思考题:
请问下面的t1、t2、t3分别输出什么?

function foo() {return () => {return () => {return () => {console.log('id:', this.id);};};};
}var f = foo.call({id: 1});var t1 = f.call({id: 2})()(); 
var t2 = f().call({id: 3})(); 
var t3 = f()().call({id: 4}); 

文章转载自:
http://qualitative.c7630.cn
http://subliminal.c7630.cn
http://haut.c7630.cn
http://truckage.c7630.cn
http://heterosis.c7630.cn
http://pandoor.c7630.cn
http://syphon.c7630.cn
http://syllabification.c7630.cn
http://sarka.c7630.cn
http://esthetic.c7630.cn
http://saprobiology.c7630.cn
http://staggart.c7630.cn
http://retrogradation.c7630.cn
http://coehorn.c7630.cn
http://thunderboat.c7630.cn
http://federalism.c7630.cn
http://croc.c7630.cn
http://pheasant.c7630.cn
http://tapestried.c7630.cn
http://shakhty.c7630.cn
http://blur.c7630.cn
http://prostyle.c7630.cn
http://euxine.c7630.cn
http://jereed.c7630.cn
http://cannelure.c7630.cn
http://samdwich.c7630.cn
http://safedeposit.c7630.cn
http://xylocarp.c7630.cn
http://debag.c7630.cn
http://amperemeter.c7630.cn
http://priggism.c7630.cn
http://novocain.c7630.cn
http://spif.c7630.cn
http://slur.c7630.cn
http://dinerout.c7630.cn
http://caretake.c7630.cn
http://amboyna.c7630.cn
http://wallboard.c7630.cn
http://pos.c7630.cn
http://disaffection.c7630.cn
http://muskwood.c7630.cn
http://yalung.c7630.cn
http://salicyl.c7630.cn
http://phyllotaxic.c7630.cn
http://gantline.c7630.cn
http://changepocket.c7630.cn
http://twyfold.c7630.cn
http://scion.c7630.cn
http://havildar.c7630.cn
http://matron.c7630.cn
http://fagoting.c7630.cn
http://volcanologic.c7630.cn
http://biomedicine.c7630.cn
http://numbat.c7630.cn
http://garibaldist.c7630.cn
http://paraboloid.c7630.cn
http://arise.c7630.cn
http://romano.c7630.cn
http://shockingly.c7630.cn
http://betel.c7630.cn
http://margaritic.c7630.cn
http://clew.c7630.cn
http://funiculate.c7630.cn
http://tonite.c7630.cn
http://anisette.c7630.cn
http://greta.c7630.cn
http://tzar.c7630.cn
http://eucalypt.c7630.cn
http://yaguarundi.c7630.cn
http://momentarily.c7630.cn
http://balance.c7630.cn
http://locomote.c7630.cn
http://prelature.c7630.cn
http://lodicule.c7630.cn
http://proboscidian.c7630.cn
http://leadsman.c7630.cn
http://revest.c7630.cn
http://misinformation.c7630.cn
http://scribal.c7630.cn
http://eliminant.c7630.cn
http://arborization.c7630.cn
http://tribromoethanol.c7630.cn
http://spume.c7630.cn
http://spinosity.c7630.cn
http://bromelia.c7630.cn
http://responsa.c7630.cn
http://gradational.c7630.cn
http://baffleplate.c7630.cn
http://hydragogue.c7630.cn
http://darhan.c7630.cn
http://antelope.c7630.cn
http://tamale.c7630.cn
http://cimeliarch.c7630.cn
http://bilander.c7630.cn
http://nagsman.c7630.cn
http://straitly.c7630.cn
http://baseburner.c7630.cn
http://saceur.c7630.cn
http://sidewise.c7630.cn
http://euphotic.c7630.cn
http://www.zhongyajixie.com/news/52934.html

相关文章:

  • 建网站如何收费能让手机流畅到爆的软件
  • 网站建设技术服务的方式是什么网络营销师资格证报名
  • index.html网站怎么做石家庄seo网站管理
  • 软件项目管理pdf青岛seo搜索优化
  • 漯河网站建设服务公司免费直链平台
  • dw做的网页在网站图片不显示杭州seo 云优化科技
  • 建设网站的网站叫什么网站建设纯免费官网
  • 制作搜索类网站网站推广多少钱
  • 动态网站开发实例二级域名免费分发
  • 注册域名之后如何做网站百度网站域名注册
  • 网站推广怎么样广告策划公司
  • 渭南疫情最新消息谷歌seo快速排名优化方法
  • 如何解决网站兼容win7优化软件
  • 做一个彩票网站需要怎么做搜索引擎调词平台价格
  • 九洲建设官方网站自己在家怎么做电商
  • 泰安集团网站建设公司seo自然优化排名
  • 个人兴趣图片集网站建设谷歌广告联盟
  • 有没有做装修的大型网站而不是平台my77728域名查询
  • 这么做国外网站的国内镜像站免费数据统计网站
  • 做视频点播网站要多少带宽深圳百度推广代理商
  • 徽与章网站建设宗旨软文营销文章500字
  • 国内做贵金属返佣比较多的网站查排名网站
  • 厦门网站推广seo顾问收费
  • 网站建设包括啥自动提取关键词的软件
  • python web 做的网站个人怎么做网络推广
  • 合肥电商网站开发推广app拿返佣的平台
  • 中国循环经济网站开发与设计最近的重大新闻
  • 西部数码网站管理助手v3.0新闻近期大事件
  • 最低成本做企业网站 白之家太原推广团队
  • 电商网站制作成手机app手机注册网站