The elementAt()
function from the rxjs
library is used to emit only the nth element of a given array or iterable. In order to use it in JavaScript, the following steps should be taken:
Firstly, install the rxjs
library using npm:
index.tsx17 chars2 lines
Then, import the library and the elementAt()
function in your JavaScript file:
index.tsx71 chars3 lines
Now, you can use the elementAt()
function in your code to extract the nth element of an array:
index.tsx195 chars9 lines
In the above example, we have created an array array
with 6 elements. We have defined the index of the desired element as elementIndex
. Then, we have created an observable from the array using the of()
function. Finally, we have piped the observable through the elementAt()
function with elementIndex
as the argument. The output of the function will be the element at index 3 of the array
, which is 3
.
gistlibby LogSnag