Function minBy
- min
By <T>(array, selector): T | undefined Type Parameters
Parameters
Returns T | undefined
The first element that is the smallest value of the given function or undefined if there are no elements.
Example: Basic usage
import { minBy } from "@std/collections/min-by";
import { assertEquals } from "@std/assert";
const people = [
{ name: "Anna", age: 34 },
{ name: "Kim", age: 42 },
{ name: "John", age: 23 },
];
const personWithMinAge = minBy(people, (i) => i.age);
assertEquals(personWithMinAge, { name: "John", age: 23 });- min
By <T>(array, selector): T | undefined Returns the first element that is the smallest value of the given function or undefined if there are no elements.
Type Parameters
Parameters
Returns T | undefined
The first element that is the smallest value of the given function or undefined if there are no elements.
- min
By <T>(array, selector): T | undefined Returns the first element that is the smallest value of the given function or undefined if there are no elements.
Type Parameters
Parameters
Returns T | undefined
The first element that is the smallest value of the given function or undefined if there are no elements.
Example: Basic usage
import { minBy } from "@std/collections/min-by";
import { assertEquals } from "@std/assert";
const people = [
{ name: "Anna", age: 34n },
{ name: "Kim", age: 42n },
{ name: "John", age: 23n },
];
const personWithMinAge = minBy(people, (i) => i.age);
assertEquals(personWithMinAge, { name: "John", age: 23n });- min
By <T>(array, selector): T | undefined Returns the first element that is the smallest value of the given function or undefined if there are no elements.
Type Parameters
Parameters
Returns T | undefined
The first element that is the smallest value of the given function or undefined if there are no elements.
Example: Basic usage
import { minBy } from "@std/collections/min-by";
import { assertEquals } from "@std/assert";
const people = [
{ name: "Anna", startedAt: new Date("2020-01-01") },
{ name: "Kim", startedAt: new Date("2020-03-01") },
{ name: "John", startedAt: new Date("2019-01-01") },
];
const personWithMinStartedAt = minBy(people, (person) => person.startedAt);
Returns the first element that is the smallest value of the given function or undefined if there are no elements.