ItSolutionStuff.com

How to Remove Duplicate Value from Array in JQuery?

By Hardik Savani • July 3, 2023
Javascript jQuery

In this post, i would like to show you how to remove duplicate value from javascript array. we will use jquery filter for remove duplicates value from array. you can simply delete duplicate string in jquery array.

Actually, very few months ago i need to work with jquery array. i have multiple time duplicate value in javascript array. i don't require to display then again and again, i just want to remove that same value in jquery. i had found out the solution of remove duplicates value from array in jquery.

So, here i am going to share simple example, so you can check it:

Example:

<!DOCTYPE html>

<html>

<head>

<title>How to remove duplicate value from array in Jquery? - ItSolutionStuff.com</title>

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

</head>

<body>

<script type="text/javascript">

var myArray = ["Hardik", "Paresh", "Sagar", "Hardik", "Rahul"];

var myNewArray = myArray.filter(function(elem, index, self) {

return index === self.indexOf(elem);

});

console.log(myNewArray);

</script>

</body>

</html>

Output:

Array(4)

0: "Hardik"

1: "Paresh"

2: "Sagar"

3: "Rahul"

I hope it can help you...

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Remove Duplicate Values from Array in PHP?

Read Now →

JQuery Notification Popup Box using Toastr JS Example

Read Now →

How to Get Last Element of Array in Javascript?

Read Now →

How to Check Image Loaded or Not in JQuery?

Read Now →

How to Check If Element is Exists or Not in jQuery?

Read Now →

How to Parse JSON in JQuery Ajax?

Read Now →

How to Remove Query String from URL using JQuery?

Read Now →

Check and Uncheck All Checkbox using JQuery Example

Read Now →

How to access PHP variables in JQuery?

Read Now →

How to Allow Only One Checkbox Checked at a Time in JQuery?

Read Now →

How can Make an Array from the Values of Another Array's Key Value?

Read Now →

How to Check Undefined, Empty and Null in JQuery?

Read Now →

How to Convert Line Breaks to br in jQuery ?

Read Now →

How to Check Object is Empty or Not in JQuery?

Read Now →