Function getMapKeyByValue

  • Retrieves the first key from a Map that matches a given value.

    This function iterates over the entries of the map and returns the first key whose corresponding value strictly equals (===) the provided searchValue. If no matching value is found, it returns undefined.

    Returns

    The key associated with the given value, or undefined if not found.

    Type Parameters

    • K

      The type of the map's keys.

    • V

      The type of the map's values.

    Parameters

    • map: Map<K, V>

      The map to search through.

    • searchValue: V

      The value to find the corresponding key for.

    Returns K | undefined

Generated using TypeDoc