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 find the minimum value with javascript

2025-01-15 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

Today Xiaobian to share with you how to use javascript to find the minimum value of the relevant knowledge points, detailed content, clear logic, I believe that most people are still too familiar with this knowledge, so share this article for your reference, I hope you read this article after some harvest, let's take a look at it.

In javascript, the Min() method of the Math object can be used to find the minimum value, which can return the minimum value of zero or more values, syntax format "Math.min(value1, value2, value3,..., Value N) "; returns"NaN"if any parameter cannot be converted to a numeric value.

Operating environment of this tutorial: Windows 7 system, Javascript version 1.8.5, Dell G3 computer.

In javascript, the Min() method of the Math object can be used to find the minimum value.

Here's an example:

console.log(Math.min(5,10));console.log(Math.min(0,150,30,20,38));console.log(Math.min(-5,10));console.log(Math.min(-5,-10));console.log(Math.min(1.5,2.5));

Output:

Description:

Math.min() Returns the minimum of zero or more values.

syntax

Math.min(n1,n2,n3,..., nX)

Return value:

The smallest number of given values.

Description:

Since min is a static method of Math, it should be used like this: Math.min(), not as a method of the Math instance you create (Math is not a constructor).

If there are no arguments, the result is Infinity.

If any parameter cannot be converted to a numeric value, the result is NaN.

Above is "how to use javascript to find the minimum value" all the content of this article, thank you for reading! I believe everyone has a great harvest after reading this article. Xiaobian will update different knowledge for everyone every day. If you want to learn more knowledge, please pay attention to the industry information channel.

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

Internet Technology

Wechat

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

12
Report