Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Flattern a list => short solution in Clear category for [old] Flatten a List by capback250
"use strict";
function flatList(array){
return array.toString().split(',').map(e=> e ? +e : null).filter(e=> e !== null)
}
May 18, 2017