// Function to find the maximum number in an array
function findMaxNumber(arr) {
return Math.max(...arr);
}
// Example usage
const numbers = [10, 5, 8, 15, 3];
const maxNumber = findMaxNumber(numbers);
console.log(maxNumber);
// Function to find the maximum number in an array
function findMaxNumber(arr) {
return Math.max(...arr);
}
// Example usage
const numbers = [10, 5, 8, 15, 3];
const maxNumber = findMaxNumber(numbers);
console.log(maxNumber);
Related
Find the longest word in a sentence using node js |
what is CI/CD: Github Actions? |
How to implement a Queue |
How to check if two strings are anagrams |
Check if a String is a Palindrome using node js |
Find the Maximum Number in an Array |
How to implement a simple calculator using node js |
Find the intersection of two arrays using node js |