Logo

Programming-Idioms

  • JS

Idiom #258 Convert list of strings to list of integers

Convert the string values from list a into a list of integers b.

let b = a.map(Number)

Array.prototype.map takes a function, which means you can pass it the name of Number.
System.Linq;
var b = a.Select(i => int.Parse(i)).ToList();

New implementation...