In JavaScript, common operators include arithmetic operators, comparison operators and logical operators.
Table 1 JavaScript common operators
算数运算符 | 说明 | 举例 | 结果 |
---|---|---|---|
= | 赋值运算符。将运算符右边变量的值赋给左边变量。 | x = 5 ; | - |
加号。将两个数据相加。 | y=1 2; | y=3 | |
- | 减号。将两个数据相减。 | z = x-y; | z=2 |
* | 乘号。将两个数据相乘。 | a=x*y; | a=15 |
/ | 除号。将两个数据相除。 | b=x/z; | b=2.5 |
% | 求余运算。求两个数据相除的余数。 | c=x%z; | c=1 |
自加。将操作数加1。 | m= x; | m=6 x=6 | |
-- | 自减。将操作数减1。 | n=--x; | n=5 x=5 |
比较运算符 | 说明 | 举例 | 结果 |
== | 相等。若两数据相等,返回 true,否则返回 false。 | boolean1=(x==5); | boolean1=true |
!= | 不相等。若两数据不相等,返回 true,否则返回 false。 | boolean2=(x!=5); | boolean2=false; |
> | 大于。若左边数据大于右边数据,返回 true,否则返回 false。 | boolean4=(x>y); | boolean4=true |
小于。若左边数据小于右边数据,则返回布尔值true,否则返回false。 | boolean5=(xboolean5=false |
|
|
>= | 大于等于。若左边数据大于或等于右边数据,返回 true,否则返回 false。 | boolean6=(x>=y); | boolean6=true |
小于等于。若左边数据小于或等于右边数据,返回 true,否则返回 false。 | boolean7=(x | boolean7=false | |
逻辑运算符 | 说明 | 举例 | 结果 |
&& | 逻辑与。如果符号两边的操作数为真,返回true,否则返回false。 | boolean_a=true&&false; | boolean_a=false |
|| | 逻辑或。如果符号两边的操作数为假,返回false,否则返回true。 | boolean_b=true||false; | boolean_b=true |
! | 逻辑非。如果符号右边的操作数为真,返回false,否则返回true。 | boolean_c=!true; | boolean_c=false |
" " can also be used to concatenate strings
The " " sign can not only add two data, but can also be used to connect strings.
For example:
var name=" Tom ";
var age=22;
var person="My name is " name " ! I'm " age " ! ";
alert(person);
Save and run the code to display My name is Tom ! I'm 22 !
In the above example, there are strings and values. When strings and numerical values are mixed, JavaScript will automatically determine the function of the " " sign, whether it is an addition operation or a concatenation of strings. If concatenating strings, the numeric value will also be converted to a string.
Discussion on self-increment ( ) and self-decrement (--)
It is worth noting that the self-increment ( ) and self-decrement (--) operators have different meanings when placed before and after the operand. Put it in front of the operand (front self-increment/front self-decrement), first add 1 (subtract 1) to the operand, and then perform the operation; place it after the operand (last self-increment/last self-decrement), perform the operation first, Then add 1 to the operand (decrease 1).
For example:
Display the value of y
Show the value of z
Display the value of m
Show the value of n
Save and run the code, click on the four pieces of text in sequence, and they will all display 6.
Analysis:
For y , the value of x (x=5) plus 1 becomes 6 , and then the value of x is passed to y .
For z , first pass the value of x (x=6) to z , then add 1 to x , so the value becomes 7.
For m , the value of x (x=7) minus 1 is 6, and the value of x is passed to m .
For n , first pass the value of x (x=6) to n , then subtract 1 from x , so the value becomes 5 .
Abbreviation for arithmetic operator
In order to facilitate operation and reduce code writing, JavaScript also supports the abbreviations of common mathematical operators.
Table 2 Abbreviations of common arithmetic operators
Operator | Example | Equivalent to | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
= | x =y | x=x y | ||||||||||||||||||
-= | x-=y | x=x-y | ||||||||||||||||||
*= | x*=y | x=x*y | ||||||||||||||||||
/= | x/=y | x=x/y | ||||||||||||||||||
%= | x%=y | x=x%y
|
The above is the entire content of this article, I hope you all like it.

去掉重复并排序的方法: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

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

Dreamweaver Mac version
Visual web development tools

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

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

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