Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/rambda/mod.ts>indexOf

Faster and smaller alternative to Ramda
Latest
function indexOf
import { indexOf } from "https://deno.land/x/rambda@9.2.1/mod.ts";

It returns the index of the first element of list equals to valueToFind.

If there is no such element, it returns -1.

Parameters

valueToFind: T
list: T[]

Returns

number

Parameters

valueToFind: T

Returns

(list: T[]) => number