Using tagged template literals
This seems obvious in retrospect, but I got this from Olivier Wietrich's tag-reduce. Tagged Literal Templates are useful syntactic sugar. I fill out a lot of school physical forms (each school has its own form), so I need strings like `Weight: ${data.wt_lb} pounds (${data.wt_kg} kg), ${data.wt_pct} percentile`. That works fine if I am evaluating the […]