Home Javascript Remove duplicates from an Array in Reactjs JavaScript

Remove duplicates from an Array in Reactjs JavaScript

by therichpost
0 comments
Remove duplicates from an Array in Reactjs JavaScript

Hello guys welcome back to my blog. Today in this blog post I am going to show you Remove duplicates from an Array in Reactjs JavaScript.

Working live video

For reactjs new comers, please check the below link:

1. Guys here is the working code snippet and you can use this inside your react application:

var arr = ["apple", "bannana", "orange", "apple", "orange"];

        arr = arr.filter( function( item, index, inputArray ) {
                return inputArray.indexOf(item) == index;
    });

I will appreciate that if you will tell your views for this post. Nothing matters if your views will be good or bad.

Jassa

Thanks

You may also like

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.