HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery map() Method</h1> <p>Click on the button to process the array.</p> <button>Click Me</button> <script> $(document).ready(function(){ $("button").click(function(){ var arr = [10, 15, 20, 25]; arr = $.map(arr, function(a) { return [a - 5]; }); $("p").text(arr); }); }); </script> </body> </html>
OUTPUT
×

Save as Private