If tutorials available on this website are helpful for you, please whitelist this website in your ad blocker😭 or Donate to help us ❤️ pay for the web hosting to keep the website running.
pop() function , Array में से last element remove करता है। और removed element को ही return करता है।
array.pop();
array | required : array Array variable है , जिसमे से value remove करनी है।
Return Value : removed element को ही return करता है।
File : js_array_pop.html
<!DOCTYPE html>
<html>
<body>
<script>
var arr=["PHP" , "jQuery", "Laravel", "AJAX"];
document.write("Removed element : "+ arr.pop() + "<br>");
document.write(arr);
</script>
</body>
</html>
Removed element : AJAX PHP,jQuery,Laravel