Answers for "js math function that returns smallest value"

4

js math function that returns smallest value

console.log(Math.min(2, 3, 1));
// expected output: 1

console.log(Math.min(-2, -3, -1));
// expected output: -3

const array1 = [2, 3, 1];

console.log(Math.min(...array1));
// expected output: 1
Posted by: Guest on July-04-2020

Code answers related to "js math function that returns smallest value"

Code answers related to "Javascript"

Browse Popular Code Answers by Language