we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "remove quotes from array javascript"
Isis
06 Oct 2020
1const strings = [ "20", "30", "40", "3.14159" ];
2const numbers = strings.map(Number);
3console.log(numbers); // [ 20, 30, 40, 3.14159 ]