dev-resources.site
for different kinds of informations.
Different Ways to find maximum number in javascript
Published at
12/12/2024
Categories
javascript
typescript
react
angular
Author
Imran Shaik
There are several ways to find the maximum number in javascript. they are as follows:
- Using Max.math() with spread operator :
let arr = [89, 3, 2, 66, 3, 64, 100, 35]
let max = Math.max(...arr)
console.log(max);
- Using reduce()
reduce method can be used to accumulate the max value by comparing each element.
let arr = [89, 3, 2, 66, 3, 64, 100, 35] let max = arr.reduce((acc, curr)=>(curr>acc?: curr: acc), -Infinity) console.log(max)
@here - Infinity is used to ensure that the first comparision always return the first element - using a For Loop: a ``
Articles
6 articles in total
Explain Closure in detail ?
read article
What is generator function in JavaScript? and How does it work?
read article
Reverse a string in JavaScript without using reverse()
read article
Different Ways to find maximum number in javascript
currently reading
How do we sort an Array in Javascript without Sort function?
read article
Different ways to create Objects in Javascipt
read article
Featured ones: