1
Reply

What is the use of map() in jquery?

    The map() method creates a new array with the results of calling a function for every array element.var numbers = [4, 9, 16, 25];function myFunction() {var a = numbers.map(Math.sqrt); }