Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use JavaScript operator, arithmetic operator and assignment operator

2025-01-29 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly introduces the relevant knowledge of "how to use JavaScript operator, arithmetic operator and assignment operator". Xiaobian shows you the operation process through actual cases. The operation method is simple and fast and practical. I hope this article "how to use JavaScript operator, arithmetic operator and assignment operator" can help you solve the problem.

JavaScript operator

Assign values to variables and add them:

Var x = 7; / / assign a value of 5 to x

Var y = 8; / / assign a value to y 2

Var z = x + y; / / assign a value to z (x + y) 7

The assignment operator (=) assigns a value to a variable.

Assignment

Var x = 15

The addition operator (+) adds to the number:

Addition

Var x = 7

Var y = 8

Var z = x + y

The multiplication operator (*) multiplies numbers:

Multiplication

Var x = 7

Var y = 8

Var z = x * y

JavaScript arithmetic operator

The arithmetic operator is used to perform arithmetic operations on numbers:

Operator description

+ addition

-subtraction

* multiplication

/ division

% Modulus (remainder)

+ + add

-- decreasing

Note: the chapter on JS arithmetic provides a complete description of the arithmetic operator.

JavaScript assignment operator

The assignment operator assigns values to the JavaScript variable.

The operator example is equivalent to

= x = y x = y

+ = 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 addition assignment operator (+ =) adds a value to the variable.

Assignment

Var x = 7

X + = 8

So much for the introduction of "how to use JavaScript operator, arithmetic operator and assignment operator". Thank you for reading. If you want to know more about the industry, you can follow the industry information channel. The editor will update different knowledge points for you every day.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report