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

Related Topics :

Rahul Kumar

Rahul Kumar

Hi ! I'm Rahul Kumar Rajput founder of learnhindituts.com. I'm a software developer having more than 4 years of experience. I love to talk about programming as well as writing technical tutorials and blogs that can help to others. I'm here to help you navigate the coding cosmos and turn your ideas into reality, keep coding, keep learning :)

Get connected with me. :) LinkedIn Twitter Instagram Facebook