first

v1.0.0arrow_drop_down
v1.0.0
v0.0.1
STATUS
Passing
DOWNLOADS
42
LICENSE
MIT
VISIBILITY
Public
PUBLISHED
7 years ago
SIZE
489 B
Returns the first element of an array.
2 contributors
Install first as a package?
Copied
npm i @bit/bit.utils.array.first
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
first (
array:[]
) : (* | null)

Returns the first element of an array.

Example
first([1, 2, 3]) // => 1
  first(['a', 'b', 'c']) // => 'a'
Argument
array: []
Returns
(* | null)

first element of given array

Test Summary

#first() should return null as array is empty

Pass

#first() should return the first value of the array

Pass
Help and resources