All programming languages must follow specific rules in order to run. The set of rules that determine the correct structure of a programming language is called its grammar. Many programming languages consist primarily of similar concepts with syntactic variations.
#In this tutorial, we will cover the many rules and conventions of JavaScript syntax and code structure. [Related course recommendations: JavaScript Video Tutorial]
Functionality and Readability
When starting to use JavaScript , functionality and readability are two important reasons to pay attention to grammar.
Some syntax rules are required for JavaScript to function. If you don't follow them, the console will throw an error and the script will stop executing.
Consider the grammatical errors in "Hello, World!" Program:
// Example of a broken JavaScript program console.log("Hello, World!"
This code example is missing the closing bracket and does not print the expected "Hello, World!" to the console, and the following error will occur:
Uncaught SyntaxError: missing ) after argument list
must be added before the script can continue running Lack of")". This is an example of how JavaScript syntax errors can break a script because correct syntax must be followed in order for the code to run.
Some aspects of JavaScript syntax and formatting are based on different schools of thought. That is, some style rules or choices are not mandatory and will not cause errors when running the code. However, there are a number of common conventions worth following as developers across projects and codebases will become more familiar with this style. Following common conventions improves readability.
Consider the following three examples of variable assignment.
const greeting="Hello"; // no whitespace between variable & string const greeting = "Hello"; // excessive whitespace after assignment const greeting = "Hello"; // single whitespace between variable & string
Although the three examples above function exactly the same in the output, the third option greeting = "Hello"; is by far the most common and readable way to write code, especially on large when considered within the context of the program.
It is important to maintain a consistent style throughout your coding project. You'll encounter different guidelines from one organization to another, so you'll have to be flexible as well.
We will introduce some code examples below so that you can become familiar with the syntax and structure of JavaScript code and refer to this article when you have questions.
White space
White space in JavaScript consists of space, tab, and newline characters (press ENTER on the keyboard). As mentioned before, JavaScript ignores excessive whitespace outside strings and whitespace between operators and other symbols. This means that the following three variable assignment examples will have the exact same calculated output:
const userLocation = "New York City, " + "NY"; const userLocation="New York City, "+"NY"; const userLocation = "New York City, " + "NY";
userLocation will represent "New York City, NY" regardless of which of these styles is written in the script. There will also be no effect on JavaScript, whether the spaces are written with tabs or spaces.
A good rule of thumb for following the most common whitespace conventions is to follow the same rules as for math and language syntax.
One notable exception to this style is during assignment of multiple variables. Note the position of = in the following example:
const companyName = "DigitalOcean"; const companyHeadquarters = "New York City"; const companyHandle = "digitalocean";
All assignment operators (=) are in one line, with spaces after the variables. This type of organizational structure is not used by every codebase, but it can be used to improve readability.
JavaScript will ignore extra newlines. Typically, extra line breaks are inserted above comments and after code blocks.
Brackets
For keywords such as if, switch, and for, spaces are usually added before and after the brackets. Observe the comparison and loop examples below.
// An example of if statement syntax if () { } // Check math equation and print a string to the console if (4 < 5) { console.log("4 is less than 5."); } // An example of for loop syntaxfor () { } // Iterate 10 times, printing out each iteration number to the console for (let i = 0; i <= 10; i++) { console.log(i); }
if statements and for loops have spaces on each side of the brackets (but not inside the brackets).
When the code belongs to a function, method or class, the brackets will touch the corresponding name.
// An example functionfunction functionName() {} // Initialize a function to calculate the volume of a cube function cube(number) { return Math.pow(number, 3); } // Invoke the function cube(5);
In the above example, cube() is a function and the bracket() pair will contain the arguments or arguments. In this case, the parameters are numbers or 5 respectively. Although cube() with extra space is valid in that the code will execute as expected, it is almost invisible. Putting them together helps to easily associate the function name with the parentheses pair and any associated passed arguments.
Semicolon
A JavaScript program is made up of a series of instructions called statements, just like a written paragraph is made up of a series of sentences. While sentences will end with a period, JavaScript statements usually end with a semicolon (;).
// A single JavaScript statement const now = new Date();
If two or more statements are adjacent, they must be separated by a semicolon.
// Get the current timestamp and print it to the console const now = new Date(); console.log(now);
Semicolons are optional if statements are separated by newlines.
// Two statements separated by newlines const now = new Date() console.log(now)
A safe and common convention is to separate statements with semicolons, regardless of newlines. In general, it is considered good practice to include them to reduce the likelihood of error.
// Two statements separated by newlines and semicolons const now = new Date(); console.log(now);
A semicolon is also required between the initialization, condition, and increment or decrement of a for loop.
for (initialization; condition; increment) { // run the loop }
分号不包括在任何类型的块语句之后,例如if、for、do、while、class、switch和function。这些块语句包含在大括号中。请注意下面的示例。
// Initialize a function to calculate the area of a square function square(number) { return Math.pow(number, 2); } // Calculate the area of a number greater than 0 if (number > 0) { square(number); }
注意,并非所有用大括号括起来的代码都以分号结尾。对象用大括号括起来,并以分号结尾。
// An example object const objectName = {}; // Initialize triangle object const triangle = { type: "right", angle: 90, sides: 3,};
在除了块语句之外的每个JavaScript语句之后包含分号是广为接受的做法,这些语句以大括号结尾。
缩进
从技术上讲,完整的JavaScript程序可以在一行中编写。 但是,这很快就会变得非常难以阅读和维护。 相反,我们使用换行符和缩进。
下面是一个条件if/else语句的例子,它要么写在一行上,要么用换行符和缩进。
// Conditional statement written on one line if (x === 1) { /* execute code if true */ } else { /* execute code if false */ } // Conditional statement with indentation if (x === 1) { // execute code if true }else { // execute code if false }
请注意,块中包含的任何代码都是缩进的。缩进可以用两个空格、四个空格或按制表符来完成。选项卡或空间的使用取决于您的个人偏好(对于单独项目)或组织的指导方针(对于协作项目)。
像上面的例子一样,在第一行末尾包括左大括号是构造JavaScript块语句和对象的常规方法。您可能看到块语句编写的另一种方式是在它们自己的行上使用大括号。
// Conditional statement with braces on newlines if (x === 1){ // execute code if true }else{ // execute code if false }
这种风格在JavaScript中不像在其他语言中那样常见,但并非闻所未闻。
任何嵌套的block语句都将进一步缩进。
// Initialize a functionfunction isEqualToOne(x) { // Check if x is equal to one if (x === 1) { // on success, return true return true; } else { return false; } }
正确的代码缩进对于保持可读性和减少混乱是必不可少的。要记住这个规则的一个例外是,压缩的库将删除不必要的字符,因此呈现较小的文件大小以加快页面加载时间(如jquery.min.js和d3.min.js)。
身份标识
变量、函数或属性的名称在JavaScript中称为标识符。标识符由字母和数字组成,但不能包含$和u之外的任何符号,也不能以数字开头。
区分大小写
这些名称区分大小写。以下两个示例myvariable和myvariable将引用两个不同的变量。
var myVariable = 1; var myvariable = 2;
javascript名称的惯例是用camelcase编写,这意味着第一个单词是小写的,但后面的每个单词都以大写字母开头。您还可以看到用大写字母书写的全局变量或常量,用下划线分隔。
const INSURANCE_RATE = 0.4;
这个规则的例外是类名,它通常是以大写字母(pascalcase)开头的每个单词编写的。
// Initialize a class class ExampleClass { constructor() { } }
为了确保代码可读,最好在程序文件中使用明显不同的标识符。
保留关键字
标识符也不能由任何保留关键字组成。关键字是JavaScript语言中具有内置功能的单词,如var、if、for和this。
例如,您不能将值赋给名为var的变量。
var var = "Some value";
由于JavaScript理解var为关键字,因此会导致语法错误:
SyntaxError: Unexpected token (1:4)
本文来自 js教程 栏目,欢迎学习!
The above is the detailed content of Get a deeper understanding of syntax and code structure in JavaScript. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
