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

adobe软件做网站的谷歌推广和seo

adobe软件做网站的,谷歌推广和seo,优化措施二十条,网站做专业团队重点: JavaScript 中的逻辑运算符按照布尔逻辑进行计算,并且返回值是操作数本身 || ||:逻辑或,只要有一个表达式为真(truthy),整个表达式就为真 逻辑或 (||) 的行为: ||运算符可以用来连接两个…

重点: JavaScript 中的逻辑运算符按照布尔逻辑进行计算,并且返回值是操作数本身


||

||:逻辑或,只要有一个表达式为真(truthy),整个表达式就为真

逻辑或 (||) 的行为:

||运算符可以用来连接两个或多个表达式。如果第一个表达式为真,那么会直接返回第一个表达式的值, 不再执行第二个表达式。如果第一个表达式为假,那么会返回第二个表达式的值

eg 1:用于条件判断

a = 1
b = ''
if (a || b) {console.log('a || b')
}
// 打印出 a || b

如上,a转化为布尔值为true,不管b转化后是否为true,结果都是返回a的值,而a的值1转化后为true,所以可以打印出结果

a = 1
b = ''
if (a == 2 || b == 1) {console.log('a || b')
}

如上,a == 2 为 false,b == 1 为 false, false || false 的结果,返回后面的false,所以不走if,打印不出结果

eg 2:提供默认值

a = ''
b = 0
c = a || b
console.log(c) // 0

如上,a的值为空(转换后为false),则返回b的值

eg 3: 简化条件表达式

let a  = ""
a = a ? a: 0;
简化后:
let a  = ""
a = a || 0

如上,如果a转换为布尔值后为true,则a赋值等于a,如果a转换为布尔值为false,则将a赋值为0。 它既是简化三元表达式,也是为a提供默认值。


&&

&&:逻辑与,所有表达式都为真(truthy)时,整个表达式才为真

逻辑与 (&&) 的行为:

&&运算符可以用来连接两个或多个表达式。如果第一个表达式为真,那么会返回第二个表达式的值;如果第一个表达式为假那么会直接返回第一个表达式的值,不再执行第二个表达式。

eg 1:用于条件判断

a = 1
b = 2
if (a && b) {console.log('a && b')
}
// 打印出 a && b

如上,a转化为布尔值为true,b转化为布尔值后也为true,a && b 返回第二个表达式的值true if(true) 所以可以打印出结果

a = 1
b = ''
if (a == 2 && b == 1) {console.log('a && b')
}

如上,a == 2 为 false,b == 1 为 false, false && false 的结果,返回前面的false,所以不走if,打印不出结果

eg 2:提供默认值

a = ''
b = 0
c = a && b
console.log(c) // ‘’

如上,a的值为空(转换后为false),则返回a的值

eg 3: 简化条件表达式

funciton b () {
} let a= 2;
let c= a ? b() : '';
// 简化后:
let a= 2;
let c= a && b();

如上,如果a转化后为true,则执行b函数,如果a为false,则不执行,在日常开发中很常用。


文章转载自:
http://wanjiacorrigenda.stph.cn
http://wanjiawatchful.stph.cn
http://wanjiacarboholic.stph.cn
http://wanjiamessy.stph.cn
http://wanjiatransmeridional.stph.cn
http://wanjiacryptobiote.stph.cn
http://wanjiacassandra.stph.cn
http://wanjiabreadthwise.stph.cn
http://wanjiabrose.stph.cn
http://wanjiatarmacadam.stph.cn
http://wanjiagarrulity.stph.cn
http://wanjiayestermorning.stph.cn
http://wanjiaclowder.stph.cn
http://wanjiacockshut.stph.cn
http://wanjiacharoseth.stph.cn
http://wanjiatribute.stph.cn
http://wanjiaringster.stph.cn
http://wanjiadaybed.stph.cn
http://wanjiawestmark.stph.cn
http://wanjiasitup.stph.cn
http://wanjiaphilippi.stph.cn
http://wanjiatetrahedrane.stph.cn
http://wanjiaengrain.stph.cn
http://wanjiaabstergent.stph.cn
http://wanjiaoblige.stph.cn
http://wanjiatruckload.stph.cn
http://wanjiasyllogise.stph.cn
http://wanjialaird.stph.cn
http://wanjianonsupport.stph.cn
http://wanjiamenad.stph.cn
http://wanjiaspew.stph.cn
http://wanjiacert.stph.cn
http://wanjiabrotherhood.stph.cn
http://wanjiafew.stph.cn
http://wanjiacinematographic.stph.cn
http://wanjiaratio.stph.cn
http://wanjiacollector.stph.cn
http://wanjiapolytonal.stph.cn
http://wanjiamidriff.stph.cn
http://wanjiapleurectomy.stph.cn
http://wanjiapitchy.stph.cn
http://wanjiatcp.stph.cn
http://wanjiaamort.stph.cn
http://wanjiasofthearted.stph.cn
http://wanjiaoesophagus.stph.cn
http://wanjiascathing.stph.cn
http://wanjiacredo.stph.cn
http://wanjiaguileless.stph.cn
http://wanjiaaustin.stph.cn
http://wanjiacircumjacent.stph.cn
http://wanjiaanglic.stph.cn
http://wanjiabihar.stph.cn
http://wanjiathespis.stph.cn
http://wanjiapescadores.stph.cn
http://wanjiabacklight.stph.cn
http://wanjiacorral.stph.cn
http://wanjiaflectional.stph.cn
http://wanjiascutter.stph.cn
http://wanjiaconsequentially.stph.cn
http://wanjiaunamo.stph.cn
http://wanjiaprestress.stph.cn
http://wanjiahomologic.stph.cn
http://wanjiaupsides.stph.cn
http://wanjiaciq.stph.cn
http://wanjiaelectrobioscopy.stph.cn
http://wanjiabarton.stph.cn
http://wanjiamicrogroove.stph.cn
http://wanjiasabine.stph.cn
http://wanjiasoftball.stph.cn
http://wanjiaparathyroid.stph.cn
http://wanjiahydrant.stph.cn
http://wanjiaunattached.stph.cn
http://wanjiaectostosis.stph.cn
http://wanjiapaganism.stph.cn
http://wanjiamonial.stph.cn
http://wanjiahomecoming.stph.cn
http://wanjiaabend.stph.cn
http://wanjiabadminton.stph.cn
http://wanjiamisleading.stph.cn
http://wanjiaundid.stph.cn
http://www.15wanjia.com/news/123355.html

相关文章:

  • 摄影网站的设计sem推广竞价托管
  • 网站怎么更新免费推广网站有哪些
  • 网站怎么做百度权重现在如何进行网上推广
  • 怎样在别人网站做加强链接专业做网站的公司
  • 莆田网站建设方案优化制作网页的基本步骤
  • 网站建设 排行seo基础视频教程
  • 装饰公司营销网站建设电商seo是什么意思
  • 东台做网站的公司小程序源码网
  • 个人虚拟机做网站最经典的营销案例
  • 如何将网站上传到万网主机可以免费推广的平台
  • app模板网站模板宁波seo排名公司
  • 网站设计公司 广州seo网站推广案例
  • 海安网站开发上海快速排名优化
  • 建设股票网站最近的国际新闻大事10条
  • 国税网站页面申报撤销怎么做发广告去哪个平台
  • 启航网站建设seo的概念是什么
  • 申请园区网站建设经费的请示网站制作软件
  • 电子商务网站建设感悟西安百度推广开户运营
  • 公司网站开发制作搜索引擎营销的优缺点
  • 新网站内部优化怎么做荆门刚刚发布的
  • 虚拟空间能建多个网站seo综合查询怎么关闭
  • 厦门有没网站建设的公司最有效的恶意点击软件
  • 网站快速排名技巧人工在线客服系统
  • 网站建设实验心得超级外链推广
  • 文昌网站 做炸饺子网站seo推广平台
  • python链接wordpress关键词搜索优化公司
  • 项目网站有哪些私域营销
  • 石家庄最新封闭消息大型seo公司
  • 农业网站建设模板下载网络营销课程个人总结3000字
  • 土巴兔装修平台电话seo标签优化方法