Home  >  Article  >  Web Front-end  >  How to determine whether a specified value is an even number in javascript

How to determine whether a specified value is an even number in javascript

青灯夜游
青灯夜游Original
2021-11-04 14:13:565214browse

In JavaScript, you can use the "%" operator to divide the specified value by 2. If it can be divided, that is, the remainder is 0, it is an even number; the syntax is "if (value % 2 == 0) {console.log(value "is an even number");}".

How to determine whether a specified value is an even number in javascript

The operating environment of this tutorial: windows7 system, javascript version 1.8.5, Dell G3 computer.

An even number is an integer that is divisible by 2.

According to this feature, we can use the "%" operator to divide the specified value by 2 (value % 2). If it can be divided evenly, the remainder will be 0 is an even number.

Implementation code:

var value=4;
if (value % 2 == 0){
	console.log(value+" 是偶数");
}

Output result:

How to determine whether a specified value is an even number in javascript

##[Recommended learning:

javascript advanced tutorial

The above is the detailed content of How to determine whether a specified value is an even number in javascript. 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