"...I can store a js template literal in a function to avoid early evaluation. Below is an example (inside HTML <script> tags).
foo = { a: function () { return `${bar}`; }, // The thing below won't work 'cause it gets evaluated ON PAGE LOAD, not when called. b: `${bar}` };
Works in Chrome (V8), at least."
— The Manager