How to Remove Last Element from Array in JQuery?
Hi Dev,
Today, jquery array remove last element is our main topic. this example will help you how to remove last element from array in jquery. This article will give you simple example of remove last element from array jquery. step by step explain jquery array remove last element. you will do the following things for remove last element from array jquery.
you can see both example of how to remove last key in jquery array.
let's see example
You can see both example with output so, you can understand, how it works.
Example 1: Remove Last Element from Jquery Array
<!DOCTYPE html>
<html>
<head>
<title>How to Remove Last Element in Jquery Array? - ItSolutionStuff.com</title>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
</head>
<body>
<script type="text/javascript">
var sites = [ "ItSolutionStuff.com", "HDTuto.com", "NiceSnippets.com", "Hackthestuff.com" ];
sites.pop();
console.log(sites);
</script>
</body>
</html>
Output:
["ItSolutionStuff.com", "HDTuto.com", "NiceSnippets.com"]
Example 2: Remove First Element from Array
<!DOCTYPE html>
<html>
<head>
<title>How to Remove First Element from Jquery Array? - ItSolutionStuff.com</title>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
</head>
<body>
<script type="text/javascript">
var sites = [ "ItSolutionStuff.com", "HDTuto.com", "NiceSnippets.com", "Hackthestuff.com" ];
sites.shift();
console.log(sites);
</script>
</body>
</html>
Output:
["HDTuto.com", "NiceSnippets.com", "Hackthestuff.com"]
I hope it can help you...
Hardik Savani
I'm a full-stack developer, entrepreneur and owner of ItSolutionstuff.com. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.
We are Recommending you
- JQuery Moment Add Seconds to Datetime Example
- Jquery Convert Array into Object Example
- How to Convert Array to Object in Javascript?
- Jquery Convert Object to String Example
- How to Remove Element from Array in JQuery?
- How to Get Unique Values from Array in JQuery?
- How to Convert Array to JSON in PHP?
- How to Get Last Element of Array in Javascript?
- How to Check If Element is Exists or Not in jQuery?
- How to Remove Specific Value from Array in JQuery?