javascript biggest number
console.log(Number.MAX_SAFE_INTEGER);
// expected output: 9007199254740991
javascript biggest number
console.log(Number.MAX_SAFE_INTEGER);
// expected output: 9007199254740991
javascript largest number in array
const max = arr => Math.max(...arr);
get largest number in array javascript
const array1 = [1, 3, 2];
Math.max(...array1);
// expected output: 3
find highest number in array javascript
function findHighestNumber(nums) {
let inputs = nums.filter((val, i) => nums.indexOf(val) === i)
let max = Math.max(...nums);
let min = Math.min(...nums);
return max + (-min);
}
console.log(difference([1, 7, 18, -1, -2, 9]));
find highest number in array javascript
function findHigestNumber(nums) {
let inputs = nums.filter((val, i) => nums.indexOf(val) === i)
let max = inputs.length - 1;
let min = 0;
for(let i = 0; i < inputs.length; i++) {
if(inputs[i] > max) max = inputs[i];
if(inputs[i] < min) min = inputs[i];
}
return max + (-min);
}
console.log(difference([1, 7, 18, -1, -2, 9]));
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us