Judicious use of map and reduce functions is a core skill, but one seldom used effectively. — The map function is something offered by all Iterable objects (Arrays, Sets, Lists, etc) and allows you to iterate through the items, apply a transformation to the item, and returns a corresponding collection of the transformed items. export const VERBS = ['start', 'stop']
export const ACTIONS = VERBS.map(verb => import(`acts/${verb}`))