“So geben Sie das max und min eines Arrays in JavaScript zurück” Code-Antworten

maximaler Wert in Array JavaScript

// For large data, it's better to use reduce. Supose arr has a large data in this case:
const arr = [1, 5, 3, 5, 2];
const max = arr.reduce((a, b) => { return Math.max(a, b) });

// For arrays with relatively few elements you can use apply: 
const max = Math.max.apply(null, arr);

// or spread operator:
const max = Math.max(...arr);
Dev Inca

JavaScript Max Array

var values = [3, 5, 6, 1, 4];

var max_value = Math.max(...values); //6
var min_value = Math.min(...values); //1
Ahze

So geben Sie das max und min eines Arrays in JavaScript zurück

function minMax(arr) {
  return [Math.min(...arr), Math.max(...arr)];
}
TechWhizKid

Ähnliche Antworten wie “So geben Sie das max und min eines Arrays in JavaScript zurück”

Fragen ähnlich wie “So geben Sie das max und min eines Arrays in JavaScript zurück”

Weitere verwandte Antworten zu “So geben Sie das max und min eines Arrays in JavaScript zurück” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen