DekGenius.com
JAVASCRIPT
javascript find smallest number in an array
const arr = [14, 58, 20, 77, 66, 82, 42, 67, 42, 4]
const min = Math.min(...arr)
console.log(min)
find smallest number in array js
//Not using Math.min:
const min = function(numbers) {
let smallestNum = numbers[0];
for(let i = 1; i < numbers.length; i++) {
if(numbers[i] < smallestNum) {
smallestNum = numbers[i];
}
}
return smallestNum;
};
Find smallest Number from array in javascript
function smallestElemnts(numbers) {
var smallest = numbers[0];
for (let i = 0; i < numbers.length; i++) {
var elements = numbers[i];
if (elements < smallest) {
smallest = elements;
}
}
return smallest;
}
const numbers = [2, 3, 4, 8, 5, 2, 4];
console.log(smallestElemnts(numbers));
//Output: 2
how to find smallest number in array js
Array.min = function( array ){
return Math.min.apply( Math, array );
};
get smallest value in array js
var test=[1, 2, 4, 77, 80];
console.log("Smallest number in test: "+Math.floor(Math.min(test)));
Find the smallest element in an array
#find the smallest element in an array
#Approach:
#Sort the array in ascending order.
arr = [2,5,1,3,0]
# sorted method
my_arr = sorted(arr)
print(f"The smallest number is {my_arr[0]}")
#* USING FOR LOOP
smallest = arr[0]
for i in range(0,len(arr)):
if arr[i] < smallest :
smallest = arr[i]
print(f"The smallest number is {smallest}")
Get the Smallest Element of an Array, array js
const getSmallest = (arr) =>
arr.reduce((smallest, num) => Math.min(smallest, num));
const arr = [13, 7, 11, 3, 9, 15, 17];
console.log(getSmallest(arr)); // 3
js get smallest value of array
Array.min = function( array ){
return Math.min.apply( Math, array );
};
var minimum = Array.min(array);
© 2022 Copyright:
DekGenius.com