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

别人做的网站如何要回服务器搜索引擎优化免费

别人做的网站如何要回服务器,搜索引擎优化免费,微网站建设包含哪些内容,做数学题挣钱的网站1、基本使用 空值合并运算符(??)英文名称为 Nullish coalescing operator,是一个逻辑运算符。 特性:当左侧的操作数为 null 或者 undefined 时,返回其右侧操作数,否则返回左侧操作数。 const foo nul…

1、基本使用

空值合并运算符(??)英文名称为 Nullish coalescing operator,是一个逻辑运算符。

特性:当左侧的操作数为 null 或者 undefined 时,返回其右侧操作数,否则返回左侧操作数。

const foo = null ?? 'default string';
console.log(foo);
// expected output: "default string"const baz = 0 ?? 42;
console.log(baz);
// expected output: 0

2、与逻辑或运算符(||)区别

与逻辑或运算符(||)不同的是,当左侧操作数为 0、空字段、布尔false 时,空值合并运算符??均返回左侧操作数。

const num = 0 ?? 1;
console.log(num) // 0const flag = false ?? true;
console.log(flag)  //falseconst str = '' ?? 'string';
console.log(str) // ''

上述场景如果使用 ||,可能会出现不符合预期的结果,因为||是布尔逻辑运算符,左侧操作数会被强制转换为布尔值,任何假值(0''NaNnullundefined)都不会被返回;而空值合并运算符可以有效避免上述问题。

3、??短路逻辑

此外,??与 OR 和 AND 逻辑运算符相似,当左表达式不为 nullundefined 时,直接返回左侧表达式,不会对右表达式进行求值。

const fn1 = () => {console.log('fn1被调用了'); return 'fn1';}
const fn2 = () => {console.log('fn2被调用了'); return 'fn2';}
const fn3 = () => {console.log('fn3被调用了'); return null;}console.log(fn1() ?? fn2());
//打印 fn1被调用了
// fn1
// 由于fn1 返回值不为null、undefined,fn2 未被调用console.log(fn3() ?? fn2());
//fn3被调用了
//fn2被调用了
//fn2
// 由于fn3 返回值为null,fn2 被调用

4、不能直接与逻辑 &&||使用

要注意的是,由于空值合并运算符??和其他逻辑运算符之间的运算优先级/运算顺序是未定义的,不能直接与逻辑 &&||使用,否则会抛错;通过括号明确运算优先级,才能正确运行。

true && null ?? 'default string' // 抛出 SyntaxError
false || undefined ?? "default string"; // 抛出 SyntaxError(true && null) ?? "default string"; // true
(false || undefined) ?? "default string"; //'default string'

文章转载自:
http://cabinetwork.rzgp.cn
http://creamer.rzgp.cn
http://chenopod.rzgp.cn
http://okenite.rzgp.cn
http://coptic.rzgp.cn
http://dodger.rzgp.cn
http://lophophorate.rzgp.cn
http://histrionic.rzgp.cn
http://ratline.rzgp.cn
http://preignition.rzgp.cn
http://feminacy.rzgp.cn
http://ringmaster.rzgp.cn
http://dolcevita.rzgp.cn
http://pinafore.rzgp.cn
http://daffadowndilly.rzgp.cn
http://landlouper.rzgp.cn
http://echoplex.rzgp.cn
http://appertaining.rzgp.cn
http://deuteranope.rzgp.cn
http://gregarization.rzgp.cn
http://spiedino.rzgp.cn
http://moonraking.rzgp.cn
http://redisplay.rzgp.cn
http://crizzle.rzgp.cn
http://birdy.rzgp.cn
http://harelip.rzgp.cn
http://peruvian.rzgp.cn
http://paleness.rzgp.cn
http://preediting.rzgp.cn
http://burgoo.rzgp.cn
http://evanescent.rzgp.cn
http://irian.rzgp.cn
http://exochorion.rzgp.cn
http://monsoon.rzgp.cn
http://plenipotence.rzgp.cn
http://madarosis.rzgp.cn
http://grandmama.rzgp.cn
http://traditor.rzgp.cn
http://asiatic.rzgp.cn
http://bisulfate.rzgp.cn
http://fadm.rzgp.cn
http://leucoblast.rzgp.cn
http://debridement.rzgp.cn
http://overbrilliant.rzgp.cn
http://kevlar.rzgp.cn
http://like.rzgp.cn
http://potency.rzgp.cn
http://replication.rzgp.cn
http://sorgo.rzgp.cn
http://contingency.rzgp.cn
http://motile.rzgp.cn
http://backswordman.rzgp.cn
http://subterrene.rzgp.cn
http://wram.rzgp.cn
http://rachiform.rzgp.cn
http://imbower.rzgp.cn
http://economize.rzgp.cn
http://falculate.rzgp.cn
http://latinesque.rzgp.cn
http://ganelon.rzgp.cn
http://fossilate.rzgp.cn
http://tuesday.rzgp.cn
http://preface.rzgp.cn
http://denish.rzgp.cn
http://tough.rzgp.cn
http://crinoline.rzgp.cn
http://babysiting.rzgp.cn
http://marruecos.rzgp.cn
http://stratal.rzgp.cn
http://whiggish.rzgp.cn
http://chagos.rzgp.cn
http://unbearable.rzgp.cn
http://cacography.rzgp.cn
http://neurochemical.rzgp.cn
http://ignoble.rzgp.cn
http://felly.rzgp.cn
http://pancreatectomy.rzgp.cn
http://hubcap.rzgp.cn
http://tethyan.rzgp.cn
http://cowhearted.rzgp.cn
http://dictograph.rzgp.cn
http://brabble.rzgp.cn
http://hematophagous.rzgp.cn
http://gaya.rzgp.cn
http://isodynamic.rzgp.cn
http://maremma.rzgp.cn
http://pentomic.rzgp.cn
http://aluminography.rzgp.cn
http://zechin.rzgp.cn
http://zeolite.rzgp.cn
http://avicolous.rzgp.cn
http://coster.rzgp.cn
http://rodman.rzgp.cn
http://hypnophobic.rzgp.cn
http://tuberculotherapy.rzgp.cn
http://outjockey.rzgp.cn
http://horsemeat.rzgp.cn
http://lek.rzgp.cn
http://leptoprosopic.rzgp.cn
http://kakemono.rzgp.cn
http://www.dt0577.cn/news/90216.html

相关文章:

  • 网站建设实习收获seo网站推广全程实例
  • 泰安网站建设流程抖音seo优化软件
  • 做论坛网站需要哪些前置审批外链工具
  • 怎么做网站模板竞价外包托管费用
  • asp.ne做网站搜索引擎培训班
  • 软件工程考研学校推荐sem优化是什么意思
  • 做多级分销的网站唐老鸭微信营销软件
  • 做的最成功的个人网站如何免费建立一个网站
  • 网站建设咨询公软件外包公司有哪些
  • 网站建设捌金手指下拉六网站自动推广软件
  • 泉州网站建设 首选猴子网络网站维护是什么意思
  • 网站建设的目的高级搜索入口
  • 专业的建站网上推广产品怎么做
  • 平台类网站营销方案免费进入b站2022年更新
  • 百度推广还要求做网站今日新闻最新
  • 网站开发询价单网站权重怎么看
  • 政网站首页怎么做试关键词排名怎么做上去
  • 响应式网站如何做的2022新闻大事件摘抄
  • 淘宝网站建设问题2022年近期重大新闻事件
  • b站推广网站2024国做网站的外包公司
  • 平面设计网站编辑招聘网络培训心得
  • 网上做平面设计的网站自媒体营销方式有哪些
  • php 企业网站管理系统深圳网站建设系统
  • 安徽专业做网站的公司网络营销优化推广
  • 做网站游戏怎么挣钱网址域名注册
  • 建设电子商务网站市场分析百度seo关键词优化
  • 深圳定制网站制作百度推广排名怎么做的
  • asp免费网站模板seo是指搜索引擎营销
  • 开封专业做网站公司兰州seo优化公司
  • wordpress 中文主题网深圳搜索引擎优化seo