Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

get largest number in array javascript

const array1 = [1, 3, 2];

Math.max(...array1);
// expected output: 3
Comment

find the largest number in array javascript

const result = (data) => {
  let max = 0;
  for (let i = 0; i < data.length; i++) {
    if (data[i] > max) {
      max = data[i];
    }
  }
  console.log("===> :: max", max);
}

const inputData = [2, 3, 5, 4, 54, 69, 4, 44, 3, 6, 45, 6, 4, 6]
result(inputData);
Comment

find largest number from an array in JavaScript

const array = [3 , 6, 2, 56, 32, 5, 89, 32];
let largestNum= array[0];

for (let i=1; i<array.length; i++){
    if (array[i]>largestNum) {
        largestNum = array[i];
    }
};
console.log(largestNum);
Comment

js largest number in array

array.reduce((max,x) => max < x ? x : max);
Comment

largest number javascript

function solution(n) {
    return parseInt('9'.repeat(n));
}
Comment

javascript largest number in array

const max = arr => Math.max(...arr);
Comment

find highest value in array javascript

const array = [10, 2, 33, 4, 5];

console.log(Math.max(...array)
)
Comment

Get the Largest Element of an Array, array js

const getLargest = (arr) =>
  arr.reduce((largest, num) => Math.max(largest, num));
const arr = [13, 7, 11, 3, 9, 15, 17];
console.log(getLargest(arr)); // 17
Comment

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]));
Comment

js highest number in array

var arr = [1, 2, 3];
var max = arr.reduce(function(a, b) {
  return Math.max(a, b);
}, -Infinity);
Comment

find the largest number from an array

static int LargestNumberin(int[] numbers){
            int largestNumber = numbers[0];
            for (int i = 1; i < numbers.Length +1; i++)
            {
                if(numbers[i] > largestNumber){
                    largestNumber = numbers[i];
                }
            }
            return largestNumber;
        }
Comment

Return the highest number in Arrays in JavaScript

function largestOfFour(arr) {
  return arr.map(Function.apply.bind(Math.max, null));
}
Comment

function that search a biggest value in array javascript

function maisBaratosQue(valor, precos) {
   return precos.filter(p => p <= valor);
}
Comment

get largest no in the array javascript

//For Values
var arr =[1,10,3]
var min = Math.min.apply(null, arr),
    max = Math.max.apply(null, arr);

//For Objects
var arr = [{a: 1},{a: 10},{a: 3}]
var values = arr.map(val => val.a);
var max = Math.max.apply(null, values);
console.log(max)
Comment

largest number of array

#include <stdio.h>
int main() {
  int n;
  double arr[100];
  printf("Enter the number of elements (1 to 100): ");
  scanf("%d", &n);

  for (int i = 0; i < n; ++i) {
    printf("Enter number%d: ", i + 1);
    scanf("%lf", &arr[i]);
  }

  // storing the largest number to arr[0]
  for (int i = 1; i < n; ++i) {
    if (arr[0] < arr[i]) {
      arr[0] = arr[i];
    }
  }

  printf("Largest element = %.2lf", arr[0]);

  return 0;
}
Comment

Find largest number from array by function in javascript

function largestElements(numbers) {
    var largest = 0;
    for (let i = 0; i < numbers.length; i++) {
        var elements = numbers[i];
        if (elements > largest) {
            largest = elements;
        }
    }
    return largest;
}
const numbers = [2, 3, 4, 8, 5, 2, 4];
console.log(largestElements(numbers));
//Output: 8
Comment

javascript set value to the largest value in an array

//get min/max value of arrays
function getArrayMax(array){
   return Math.max.apply(null, array);
Comment

js highest number in array

function maxFromArray(array) {
  return array.reduce(function(a, b) {
    return Math.max(a, b);
  }, -Infinity);
}
Comment

find the largest array from an array in javascript

const numbers = [
  [1, 2, 3],
  [4, 5, 6],
  [7, 8, 9, 10, 11],
];

let largestArray = numbers[0].length;
for (let i = 1; i < numbers.length; i++) {
  if (numbers[i].length > largestArray) {
    largestArray = numbers[i];
    for (let j = 0; j < largestArray.length; j++) {
       console.log(numbers[i][j]);
    }
  }
}

//it will print 7, 8, 9, 10, 11 as these numbers are in largest array;
Comment

Find Largest Number by function by javascript

function largestNumber(first, second, third) {
    if (first > second && first > third) {
        return first;
    } else if (second > first && second > third) {
        return second;
    } else {
        return third;
    }
}
const num1 = 100;
const num2 = 120;
const num3 = 80;
console.log(largestNumber(num1, num2, num3));
//Output: 120
Comment

largest number of array

#include <stdio.h>
int main() {
  int n;
  double arr[100];
  printf("Enter the number of elements (1 to 100): ");
  scanf("%d", &n);

  for (int i = 0; i < n; ++i) {
    printf("Enter number%d: ", i + 1);
    scanf("%lf", &arr[i]);
  }

  // storing the largest number to arr[0]
  for (int i = 1; i < n; ++i) {
    if (arr[0] < arr[i]) {
      arr[0] = arr[i];
    }
  }

  printf("Largest element = %.2lf", arr[0]);

  return 0;
}
Comment

PREVIOUS NEXT
Code Example
Javascript :: lodash isequal 
Javascript :: generator function 
Javascript :: check if all array elements are equal 
Javascript :: build json object 
Javascript :: ternary 
Javascript :: javascript most frequent in a list 
Javascript :: Define Number Prop Vue 
Javascript :: Create A Promise And Then Return It 
Javascript :: redux actions 
Javascript :: use obj property inside itself 
Javascript :: includes in javascript 
Javascript :: p5js no stroke 
Javascript :: js how to to attach an event handler only once 
Javascript :: reactjs svg SyntaxError: unknown: Namespace tags are not supported by default 
Javascript :: how to make html with jquery 
Javascript :: delete an item from array javascript 
Javascript :: Write Number in Expanded Form 
Javascript :: using sequelize to read from a table 
Javascript :: make object move towards player p5js 
Javascript :: react duration picker 
Javascript :: post express node js input 
Javascript :: javascript for pop up 
Javascript :: how to access items inside anonymous object 
Javascript :: how to global a variable in javascript 
Javascript :: Min JavaScript Methods 
Javascript :: Number.prototype.between = function(a, b) { var min = Math.min.apply(Math, [a, b]), max = Math.max.apply(Math, [a, b]); return this min && this < max; }; 
Javascript :: window.print() specific div 
Javascript :: example of call by value and call by reference in javascript 
Javascript :: nodejs mysql connection 
Javascript :: form status angular 
ADD CONTENT
Topic
Content
Source link
Name
5+8 =