Module

x/lodash_es/src/max.js>default

lodash for deno use
Latest
function default
import { default } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/max.js";

Computes the maximum value of array. If array is empty or falsey, undefined is returned.

Examples

_.max([4, 2, 8, 6]); // => 8

_.max([]); // => undefined

Parameters

array

The array to iterate over.