Home  >  Article  >  Web Front-end  >  Detailed explanation of js expressions and operator codes

Detailed explanation of js expressions and operator codes

小云云
小云云Original
2018-03-02 15:46:171517browse

This article mainly shares with you detailed examples of js expressions and operator codes. I hope it can help you.

/**
* Created by Administrator on 2017/12/14.
* 表达式与运算符
*/
//1.基本表达式  加减乘除
var a = 4;
a = 7/6;
var b = (a + 4)/2;
console.log(a);
console.log(b);
console.log("==========");
//end
//2.比较运算符 == != > < >= <=
console.log(a <= b);
console.log(a == b);
console.log(a != b);
console.log("==========");
//end
//3.逻辑表达式 逻辑与(&&)和逻辑或(||)
var ret = (a > 1) && (a < 2);
console.log(ret);
console.log(true && false);
console.log("==========");
//end
//4.字符串
a = 10;
b = 20;
var num_str = "" + a + b + true;
console.log(num_str);   //1020true
num_str = a + b + true + "";
console.log(num_str);   //31
console.log("==========");
//end
//5.简约表达式  += -= *= /=  ++  --
var c = null;
a += c; //a = a + c
a -= c; //a = a - c
a *= c; //a = a * c
a /= c; //a = a / c
a = 10;
a++;    //a = a + 1   先参与运算,最后自增
++a;    //a = a + 1   先自增在参与运算
console.log(a);
a--;    //a = a - 1   先参与运算,最后自减
console.log(a);
--a;    //a = a - 1   先自减在参与运算
a = 4;
console.log(a++);
console.log(++a);
// end

Related recommendations:

js expression calculator code_javascript skills

Detailed explanation of js operator single vertical bar "|" Introduction to the usage and function of "||"

The 20 most commonly used regular expressions in JavaScript

The above is the detailed content of Detailed explanation of js expressions and operator codes. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn