I think Object.keys will do you:
Object.keys
Object.keys(replaceList).forEach(e => { timeN = timeN.replace(e,replaceList[e]); });
@Gordon started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
I think
Object.keys
will do you: