javascript 分号_让我们谈谈JavaScript中的分号

javascript 分号

要使用它们,还是不使用它们… (To use them, or not to use them…)

Semicolons in JavaScript divide the community. Some prefer to use them always, no matter what. Others like to avoid them.

JavaScript中的分号分隔社区。 有些人更喜欢始终使用它们,无论如何。 其他人喜欢避免它们。

I put out a poll on Twitter to test the waters, and I found lots of semicolon supporters:

我在Twitter上进行了一项民意测验以测试水域,然后发现了许多分号支持者:

After using semicolons for years, in the fall of 2017 I decided to try avoiding them when I could. I set up Prettier to automatically remove semicolons from my code, unless there was a particular code construct that required them.

在使用分号多年之后,在2017年秋天,我决定尽量避免使用分号。 我将Prettier设置为自动从代码中删除分号,除非存在需要它们的特殊代码构造。

Now I find it natural to avoid semicolons, and I think the code looks better and is cleaner to read.

现在,我发现避免分号是很自然的事情,并且我认为代码看起来更好,更易于阅读。

This is all possible because JavaScript does not strictly require semicolons. When there is a place where a semicolon is needed, it adds it behind the scenes.

这都是可能的,因为JavaScript并不严格要求分号。 当有需要分号的地方时,它将其添加到幕后。

This is called Automatic Semicolon Insertion.

这称为自动分号插入

It’s important to know the rules that power semicolons. This will allow you to avoid writing code that will generate bugs before it does not behave like you expect.

了解支持分号的规则很重要。 这将使您避免编写在行为不如预期的情况下会生成错误的代码。

JavaScript自动分号插入规则 (The rules of JavaScript Automatic Semicolon Insertion)

The JavaScript parser will automatically add a semicolon when, during the parsing of the source code, it finds these particular situations:

JavaScript解析器在解析源代码期间发现以下特殊情况时,将自动添加分号:

  1. when the next line starts with code that breaks the current one (code can spawn on multiple lines)

    当下一行以中断当前代码的代码开头时(代码可以在多行中产生)
  2. when the next line starts with a }, closing the current block

    当下一行以}开头时,关闭当前块

  3. when the end of the source code file is reached

    当到达源代码文件的末尾
  4. when there is a return statement on its own line

    当在自己的行上有一个return语句时

  5. when there is a break statement on its own line

    当一行上有一个break语句时

  6. when there is a throw statement on its own line

    当在自己的行上有一个throw语句时

  7. when there is a continue statement on its own line

    当在自己的行上有一个continue语句时

不符合您的想法的代码示例 (Examples of code that does not do what you think)

Based on those rules, here are some examples.

根据这些规则,下面是一些示例。

Take this:

拿着这个:

const hey = 'hey'const you = 'hey'const heyYou = hey + ' ' + you['h', 'e', 'y'].forEach((letter) => console.log(letter))

You’ll get the error Uncaught TypeError: Cannot read property 'forEach' of undefined because based on rule 1, JavaScript tries to interpret the code as

您将收到错误Uncaught TypeError: Cannot read property 'forEach' of undefined因为基于规则1 ,JavaScript尝试将代码解释为

const hey = 'hey';const you = 'hey';const heyYou = hey + ' ' + you['h', 'e', 'y'].forEach((letter) => console.log(letter))

This piece of code:

这段代码:

(1 + 2).toString()

prints "3".

打印"3"

const a = 1const b = 2const c = a + b(a + b).toString()

Instead, it raises a TypeError: b is not a function exception, because JavaScript tries to interpret it as

相反,它引发TypeError: b is not a function异常,因为JavaScript尝试将其解释为

const a = 1 const b = 2 const c = a + b(a + b).toString()

Another example based on rule 4:

基于规则4的另一个示例:

(() => {  return  {    color: 'white'  }})()

You’d expect the return value of this immediately-invoked function to be an object that contains the color property, but it’s not. Instead, it’s undefined, because JavaScript inserts a semicolon after return.

您希望此立即调用的函数的返回值是一个包含color属性的对象,但事实并非如此。 相反,它是undefined ,因为JavaScript在return之后插入一个分号。

Instead you should put the opening bracket right after return:

相反,您应该在return后将左括号放在右边:

(() => {  return {    color: 'white'  }})()

You’d think this code shows ‘0’ in an alert:

您可能会认为此代码在警报中显示“ 0”:

1 + 1 -1 + 1 === 0 ? alert(0) : alert(2)

but it shows 2 instead, because JavaScript (per rule 1) interprets it as:

但它改为显示2,因为JavaScript(根据规则1)将其解释为:

1 + 1 -1 + 1 === 0 ? alert(0) : alert(2)

结论 (Conclusion)

Be careful — some people are very opinionated about semicolons. I don’t care, honestly. The tool gives us the option not to use it, so we can avoid semicolons if we want.

小心-有些人对分号很自以为是。 老实说,我不在乎。 该工具为我们提供了不使用它的选项,因此我们可以避免使用分号。

I’m not suggesting anything on one side or the other. Just make your own decision based on what works for you.

我不建议任何方面。 只需根据适合您的条件做出自己的决定。

Regardless, we just need to pay a bit of attention, even if most of the time those basic scenarios never show up in your code.

无论如何,即使在大多数情况下,这些基本方案在您的代码中始终没有出现,我们只需要稍微注意一下即可。

Pick some rules:

选择一些规则:

  • Be careful with return statements. If you return something, add it on the same line as the return (same for break, throw, continue)

    注意return语句。 如果您返回内容,则将其添加到返回内容的同一行(与breakthrowcontinue )

  • Never start a line with parentheses, as those might be concatenated with the previous line to form a function call, or an array element reference

    切勿以括号开头,因为括号可能会与前一行连接在一起以形成函数调用或数组元素引用

And ultimately, always test your code to make sure it does what you want.

最后,请始终测试您的代码以确保它能够满足您的要求。

I publish 1 free programming tutorial per day on flaviocopes.com, check it out!

我每天在flaviocopes.com上发布1个免费的编程教程,请查看!

Originally published at flaviocopes.com.

最初发布于flaviocopes.com 。

翻译自: https://www.freecodecamp.org/news/lets-talk-about-semicolons-in-javascript-f1fe08ab4e53/

javascript 分号

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/393395.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

leetcode436. 寻找右区间(二分法)

给定一组区间,对于每一个区间 i,检查是否存在一个区间 j,它的起始点大于或等于区间 i 的终点,这可以称为 j 在 i 的“右侧”。 对于任何区间,你需要存储的满足条件的区间 j 的最小索引,这意味着区间 j 有最…

python篇第6天【数据类型】

Python有五个标准的数据类型:Numbers(数字)String(字符串)List(列表)Tuple(元组)Dictionary(字典)Python数字数字数据类型用于存储数值。他们是不…

如何确定Ionic是否适合您的项目

by Simon Grimm西蒙格里姆(Simon Grimm) 如何确定Ionic是否适合您的项目 (How to find out if Ionic is the right choice for your project) Ionic has been around for quite some years. With the latest release of version 4, it has become an even better option for d…

二维数组的查找 java_查找二维数组java的总和

我正在一个项目中,我必须读取文件并将内容输入2D数组。然后,我必须对每一行,每一列和矩阵的周长求和。到目前为止,除外围功能外,我一切正常。我正在尝试为两个外部列的顶行,底行和中间创建单独的for循环。矩…

递归法解决兔子问题

记得以前過相似问题,今天有同事问道,竟然不知所答,故写篇文章以记之。 一般而言,兔子在出生两个月后,就有繁殖能力,一对兔子每个月能生出一对小兔子来。如果所有兔子都不死,那么若干月以后可以繁…

mysql本地连接错误解决办法

今天公司同事在测试服务器上死活不能用一个账号在本地登陆,但是远程就可以,于是我帮忙看了下,测试服务器的IP是10.10.2.226,错误如下:linux-0fdr:/home1/mysql_data # mysql -h 10.10.2.226 -u jxq2 -pjxq2ERROR 1045 (28000): Access denied for user jxq2linux-0fdr (using p…

leetcode546. 移除盒子(dp)

给出一些不同颜色的盒子,盒子的颜色由数字表示,即不同的数字表示不同的颜色。 你将经过若干轮操作去去掉盒子,直到所有的盒子都去掉为止。每一轮你可以移除具有相同颜色的连续 k 个盒子(k > 1),这样一轮…

408. Valid Word Abbreviation

题目: Given a non-empty string s and an abbreviation abbr, return whether the string matches with the given abbreviation. A string such as "word" contains only the following valid abbreviations: ["word", "1ord", &qu…

oracle常用操作指令

登录oracle用户: sqlplus 用户名/密码 创建用户:create user 要创建的用户名 identified by 当前用户名; 授权:grant resource,connect to 要授权的用户名; 删除用户:drop user 用户名 创建表: create table student( id n…

java接收二进制数据_java-从套接字读取二进制数据

我正在尝试连接到服务器,然后向其发送HTTP请求(在这种情况下为GET).这个想法是请求一个文件,然后从服务器接收它.它应同时适用于文本文件和二进制文件(例如imgs).我对文本文件没有任何问题,它可以完美工作,但是对二进制文件有一些麻烦.首先,我声明一个BufferedReader(用于读取标…

web开发入门_Web开发人员和设计师的自由职业入门

web开发入门Learn how to get started with freelancing as a web developer and designer. Cara Bell shares lessons and tips she has learned from her years as a freelancer.了解如何以网络开发人员和设计师的身份开始自由职业。 卡拉贝尔(Cara Bell)分享了她从自由职业者…

leetcode1343. 大小为 K 且平均值大于等于阈值的子数组数目(队列)

给你一个整数数组 arr 和两个整数 k 和 threshold 。 请你返回长度为 k 且平均值大于等于 threshold 的子数组数目。 示例 1: 输入:arr [2,2,2,2,5,5,5,8], k 3, threshold 4 输出:3 解释:子数组 [2,5,5],[5,5,5] 和 [5,5,8…

二分查找递归和非递归方法分析

递归实现: 自己写的递归:多一个赋值操作,虽然可以得到正确的结果。但是比较难以理解。 问题:没有深刻理解递归返回值。return会在递归调用到最后,在递归结束的地方,会将返回值一层一层返回给方法&#xff0…

BaseYii_autoload

BaseYii_autoload 判断是否是classMap还是命名空间的 然后 转换成 绝对路径 include 文件  public static function autoload($className){      //classMap 一般都是类库 官方 或者自定义类映射 if (isset(static::$classMap[$className])) {$classFile static::$cla…

sasl java_javaSASL_SSL帐号密码方式访问kafka

java SASL_SSL帐号密码 方式访问 kafkaProducer Java Sample java生产者:Properties props new Properties();props.put("bootstrap.servers","*******:9092,*******:9092");props.put("acks", "all");//props.put("retries&quo…

RedHat5.2下Linux Oracle 10g ASM 安装详细实录-第二篇-ASM安装

五、安装ASM 1、在oracle网站下载支持包:http://www.oracle.com/technology ... x/asmlib/rhel5.html 2、根据linux内核下载相应的asm安装包:根据uname –a查看内核(黄底红字为内核):$ uname -aLinux L-DB-3-6 2.6.18-92.el5 #1 S…

心理学专业转用户体验_用心理学设计奇妙的用户体验

心理学专业转用户体验We are all influenced by the world around us and by how our minds work. Designers need to be able to understand this and design for it.我们所有人都受到周围世界以及我们思维方式的影响。 设计师需要能够理解这一点并为此进行设计。 In this ta…

leetcode面试题 16.04. 井字游戏

设计一个算法,判断玩家是否赢了井字游戏。输入是一个 N x N 的数组棋盘,由字符" ",“X"和"O"组成,其中字符” "代表一个空位。 以下是井字游戏的规则: 玩家轮流将字符放入空位&#x…

JAVA基础_修饰符

引言:Java的修饰符根据修饰的对象不同,分为类修饰符、方法修饰符、变量修饰符,其中每种修饰符又分为访问控制修饰符和非访问控制修饰符。访问控制存在的原因:a、让客户端程序员无法触及他们不应该触及的部分 b、允许库设计者可以改…

etcd与mysql_etcd数据库备份与还原

1. 备份etcd1.1 手动备份数据etcdctl backup --data-dir /var/lib/etcd/default.etcd --backup-dir 备份目录1.2 脚本备份数据使用etcd自带命令etcdctl进行etc备份,脚本如下:#!/bin/bashdate_timedate %Y%m%detcdctl backup --data-dir /var/lib/etcd/de…