JS
jQuery

How To Remove Last Element From Array In JQuery?

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.

  • 4.5/5.0
  • Last updated 08 September, 2022
  • By Admin

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? - codewale.com</title>
   <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
</head>
<body>
<script type="text/javascript">
    var sites = [ "codewale.com", "flipkart.com", "amazon.com" ];
    sites.pop();
    console.log(sites);
</script>
</body>
</html>
Output
["codewale.com", "flipkart.com"]

Now we are ready to run our application, so let's run using bellow command:

npm start

Open bellow url:

http://localhost:3000

I hope it can help you...