


JavaScript: The difference between expressions and statements [Translation]_javascript skills
1. Statements and Expressions
There is a difference between expressions and statements in JavaScript. An expression will produce a value, and it can be placed anywhere a value is required, for example, as a function call Parameters. Each line of code below is an expression:
myvar3 The xmyfunc("a", "b") statement can be understood as a behavior. Loop statements and if statements are typical statements. A program is It consists of a series of statements. Wherever a statement is required in JavaScript, you can use an expression instead. Such a statement is called an expression statement. But the reverse is not true: you cannot use an expression in a place where an expression is required. Put a statement. For example, an if statement cannot be used as a parameter of a function.
2. Other syntax
Look at the following two pairs of similar syntax. After understanding these, it can help us Better understand the relationship between statements and expressions.
2.1 If statement and conditional operator
The following is an example of an if statement:
var x;
if (y >= 0) {
x = y;
} else {
x = -y;
}
An expression similar to the if statement function is called a conditional operator. The above statement is equivalent to the following .
var x = (y >= 0 ? y : -y);
The code between the equal sign = and the semicolon; is the conditional expression. The parentheses on both sides Not required, but I think parentheses make conditional expressions more readable.
2.2 Semicolon and comma operators
In JavaScript, use a semicolon to connect two statements:
foo(); bar() To connect two expressions, the uncommon comma operator is used:
foo(), bar() The comma operator will evaluate the two expressions before and after , and then returns the calculation result of the expression on the right. For example:
> "a", "b"
'b'
> var x = ("a", "b");
> x
'b'
> console.log(("a", "b"));
3. Expressions that look like statements
Some expressions look like statements, which may cause some trouble.
3.1 Object literals and statement blocks
The following is an object literal, which is an expression that can generate an object value Formula.
{
foo: bar(3, 5)
}
But at the same time, it is also a completely legal statement. The components of this statement are:
• A code block: a block surrounded by braces Sequence of statements.
•A label: You can place a label in front of any statement. Here foo is a label.
•A statement: Expression statement bar(3, 5).
You might I'm shocked that JavaScript can actually have independent code blocks (common code blocks are based on loops or if statements). The following code demonstrates the function of this code block: you can set a label for it and jump out of this Code block.
function test(printTwo) {
printing: {
console.log("One");
if (!printTwo) break printing;
console.log("Two");
}
console.log(" Three");
}
> test(false)
One
Three
> test(true)
One
Two
Three
3.2 Function expression and function declaration
The following code is a function expression:
function () { } You can also give this function expression a name and transform it For a named (non-anonymous) function expression:
function foo() { }The function name (foo) of this function only exists inside the function. For example, you can use it to do recursive operations:
> var fac = function me(x) { return x <= 1 ? 1 : x * me(x-1) }
> fac(10)
3628800
> console.log(me)
ReferenceError: me is not defined
On the surface, a named function expression is no different from a function declaration. But their effects are different: a function expression produces a value (a function). A function declaration Perform an action: assign a function to a variable. In addition, only function expressions can be called immediately, function declarations cannot.
3.3 Resolving conflicts
As can be seen from 3.1 and 3.2, some expressions There is no apparent difference between expressions and statements. This means that the same code will have different effects when it appears in an expression context and when it appears in a statement context. Normally, there is no overlap between the two contexts. . However, if it is an expression statement, there will be an overlap: that is, there will be some expressions that appear in the context of the statement. To resolve this ambiguity, JavaScript syntax prohibits expression statements from curly brackets or the keyword " function" starts with:
ExpressionStatement:
[lookahead ∉ {"{", "function"}] Expression ;
So, what if you want to write an expression statement that starts with those flags? You can put it in a bracket Internally, this does not change the result of the operation, it just ensures that the expression is parsed in the expression context. Let's look at two examples. The first example: eval will parse its parameters according to the statement context. If you want eval returns an object, you must add a bracket around the object literal.
> eval("{ foo: 123 }")
123
> eval("({ foo: 123 })")
{ foo: 123 }
Second example: The following example is a function expression that is executed immediately.
> (function () { return "abc" }())
'abc'
If you omit the parentheses, you get A syntax error (function declaration cannot be anonymous):
> function () { return "abc" }()
SyntaxError: function statement requires a name
If you add a function name, you will also get a syntax error (function statement cannot understood and executed):
> function foo() { return "abc" }()
SyntaxError: syntax error
Another way to make an expression parsed in expression context is to use unary operators, such as or! .However, unlike using parentheses, these operators will change the result of the expression. If you don’t care about the result, you can use:
> function () { console.log("hello") }()
hello
NaNNaN
is the result of acting on the return value undefined after function execution.
Translator’s Note: I didn’t think the translation was clear, so I drew a picture with a poor level.
![JavaScript: The difference between expressions and statements [Translation]_javascript skills](http://files.jb51.net/file_images/article/201209/20120917015838133.gif)
Original text (English):http://www.2ality.com/2012/09/expressions-vs-statements.html

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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



With the development of web applications, PHP language has been widely used in web development. In the PHP8.0 version, a new language feature was introduced - the multi-catch statement. What is a multi-catch statement? In previous PHP versions, developers needed to write multiple catch statements to handle multiple exception types. For example, the following code block shows the handling of two different exceptions: try{//Somecodethatmay

Python, as a high-level programming language, is easy to learn and use. Once you need to write a Python program, you will inevitably encounter syntax errors, and expression syntax errors are a common one. In this article, we will discuss how to resolve expression syntax errors in Python. Expression syntax errors are one of the most common errors in Python, and they are usually caused by incorrect usage of syntax or missing necessary components. In Python, expressions usually consist of numbers, strings, variables, and operators. most common

How to implement the statement of inserting data in MySQL? When using a MySQL database, inserting data is a very basic and common operation. By inserting data, new records can be added to database tables to provide support for business operations. This article will introduce how to use the INSERT statement in MySQL to implement data insertion operations, and provide specific code examples. The INSERT statement in MySQL is used to insert new records into the database table. Its basic syntax format is as follows: INSERTINTOt

In C or C++, the comma "," has different uses. Here we will learn how to use them. Commas as operators. The comma operator is a binary operator that evaluates the first operand, discards the result, then evaluates the second operand and returns the value. The comma operator has the lowest precedence in C or C++. Example #include<stdio.h>intmain(){ intx=(50,60); inty=(func1(),func2());} Here 60 will be assigned to x. For the next statement, func1( will be executed first

Python is a widely used high-level programming language. It is easy to learn, efficient and flexible, and is deeply loved by developers. In Python, flow control statements are an important part of implementing program logic. This article will introduce commonly used flow control statements in Python and provide code examples to deepen understanding. In Python, common flow control statements include conditional statements and loop statements. Conditional statements execute different code blocks based on the true or false condition and are used to determine and select execution branches. The loop statement is used to repeat

To learn Python from scratch, first understand the types of flow control statements! Python is a simple and powerful programming language that is widely used in data analysis, artificial intelligence, network development and various scientific computing fields. As a beginner, it is very important to master basic flow control statements, because they are the basis for realizing logical judgment and controlling the program execution flow. In Python, there are three main types of flow control statements: sequential structures, conditional structures and loop structures. The following will introduce these three process control statements in detail and give the corresponding

The usage of try statement in C# requires specific code examples. C# is an object-oriented programming language, in which the try statement is a structure used to capture and handle exceptions. Through the try statement, we can write code to handle exceptions that may occur, thereby improving the stability and reliability of the program. In this article, we will introduce the usage of try statement in C# and provide some specific code examples to help readers understand. In C#, the try statement consists of try block, catch block and optionalfina

Introduction to how to write exponential function expressions in C language and code examples What is an exponential function? The exponential function is a common type of function in mathematics. It can be expressed in the form of f(x)=a^x, where a is the base and x is the exponent. . Exponential functions are mainly used to describe exponential growth or exponential decay. Code example of exponential function In C language, we can use the pow() function in the math library to calculate the exponential function. The following is a sample program: #include
