© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Victor Souza
Web Developer from π Canis Majoris.
Clearly explained! thanks for sharing it✨✨
I'll play with it more later :)
function bold(strings, ...args) { return [strings, args[1](args[0])]; } const html = bold`7^2 =${7}${function square(x) { return x*x; }}`; console.log(html.join(" "));