JavaScript Array pop()

📔 : Java Script 🔗

pop() function , Array में से last element remove करता है। और removed element को ही return करता है।

JavaScript Array pop() Syntax

array.pop();

  1. array | required : array Array variable है , जिसमे से value remove करनी है।

  2. Return Value : removed element को ही return करता है।


JavaScript Array Example

File : js_array_pop.html

CopyFullscreenClose FullscreenRun
<!DOCTYPE html>
<html>
  <body>
    <script>
      var arr=["PHP" , "jQuery", "Laravel", "AJAX"];
      document.write("Removed element : "+ arr.pop() + "<br>");
      document.write(arr);
    </script>
  </body>
</html>
Output
Removed element : AJAX
PHP,jQuery,Laravel

Hey ! I'm Rahul founder of learnhindituts.com. Working in IT industry more than 4.5 years. I love to talk about programming as well as writing technical tutorials and blogs that can help to others .... keep learning :)

Get connected with me - LinkedIn Twitter Instagram Facebook