Gajendra Jangid
What is the use of map() in jquery?
By Gajendra Jangid in .NET on Jan 25 2018
  • 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); }

    • 1