Gajendra Jangid
What is the use of map() in jquery?
By Gajendra Jangid in .NET on Jan 25 2018
  • Rajeev Kumar
    Mar, 2023 1

    The jQuery map() function translates all items in an object or in array to a new array of items. It applies a function to each item of the object or array and maps the results into a new array.

    • 0
  • Gajendra Jangid
    Jan, 2018 25

    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); }

    • 0


Most Popular Job Functions


MOST LIKED QUESTIONS