JavaScript Basics Operators

JavaScript Basics Operators

1. Operators

Operators, also known as operators, are symbols used to implement functions such as assignment, comparison, and arithmetic operations.

Commonly used operators in JavaScript are:

  • Arithmetic operators (+, -, *, /, %)
  • Increment and decrement operators (++num, num++, --num, num--)
  • Comparison Operators
  • Logical operators
  • Assignment Operators

Assignment operation:

var a = 1; //Put the value on the right into the variable on the left

Comparison operations:

  • Comparison operation - refers to the comparison of the size of numbers: > < >= <=
  • The result of the comparison operation must be a Boolean value.

Logical operations:

  • Logical operators: && (and) || (or) ! Not/invert
  • && and || are used to connect two conditions to form a large conditional judgment result

Increment and decrement operations:

++ Increment symbol

When the ++ symbol encounters the output, the symbol is at the back, so ++ is performed last and the output is performed first

console.log( a++ );

When the ++ symbol encounters the output, the symbol comes first, so ++ is performed first, and then the output

console.log(++a);

The same applies to the minus sign

--Decrement symbol

Summarize

This article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • This article summarizes the characteristics of logical operators in JS
  • Let's take a look at the same old JS operator explanation
  • Detailed explanation of JS operator precedence and expression examples
  • Simple usage examples of JS operators
  • JavaScript equality operator nine rules with examples
  • Detailed explanation of || and && operators in js
  • Detailed explanation of operator overloading in Javascript
  • Explanation of operators in JavaScript

<<:  HTML scroll bar textarea attribute setting

>>:  Use of MySQL triggers

Recommend

Detailed explanation of scp and sftp commands under Linux

Table of contents Preface 1. scp usage 2. Use sft...

foreman ubuntu16 quick installation

Quickstart Guide The Foreman installer is a colle...

Brief analysis of MySQL union and union all

In the database, both UNION and UNION ALL keyword...

MySQL-group-replication configuration steps (recommended)

MySQL-Group-Replication is a new feature develope...

Detailed explanation of how to use Tomcat Native to improve Tomcat IO efficiency

Table of contents Introduction How to connect to ...

Should I use UTF-8 or GB2312 encoding when building a website?

Often when we open foreign websites, garbled char...

How InnoDB implements serialization isolation level

Serialization implementation InnoDB implements se...

Several mistakes that JavaScript beginners often make

Table of contents Preface Confusing undefined and...

MySql 8.0.11-Winxp64 (free installation version) configuration tutorial

1. Unzip the zip package to the installation dire...

A brief discussion on Linux virtual memory

Table of contents origin Virtual Memory Paging an...

How to retrieve password for mysql 8.0.22 on Mac

Mac latest version of MySQL 8.0.22 password recov...

A brief discussion on the Linux kernel's support for floating-point operations

Currently, most CPUs support floating-point units...