Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
clear solution in Clear category for Remove All Before by akaka
function removeAllBefore(values: number[], b: number): number[] {
return values.includes(b) ? values.slice(values.indexOf(b)) : values
}
April 30, 2020
Comments: