Jquery – How to remove empty or null values from array?
In this post we will give you information about Jquery – How to remove empty or null values from array?. Hear we will give you detail about Jquery – How to remove empty or null values from array?And how to use it also give you demo for it if it is necessary.
Hey Developer,
Are you looking for remove empty value or null value from array in javascript? than you are a right place. i will show you how to remove empty values from string array in jquery. i write small example of remove null from array in jquery.
we will use jquery array filter function for remove empty or null value. in filter function we will return values if string value is not empty or null value.
var myArrayNew = myArray.filter(function (el) {
return el != null && el != "";
});
Here you can see full example of delete empty or null values from array in jquery. So just check bellow full example for your help.
Example:
<!DOCTYPE html>
<html>
<head>
<title>Jquery - How to remove empty or null values from array? - 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", "", "Rahul", null, "Kiran"];
var myArrayNew = myArray.filter(function (el) {
return el != null && el != "";
});
console.log(myArrayNew);
</script>
</body>
</html>
I hope it can help you…
Hope this code and post will helped you for implement Jquery – How to remove empty or null values from array?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs