For the complete documentation index, see llms.txt. This page is also available as Markdown.

Template Strings

const appName = 'Wishtack';
const userName = 'Foo';
const greetings = `Hi ${userName},
Welcome to ${appName}!`

console.log(greetings);

// Result:
// Hi Foo,
// Welcome to Wishtack!

Last updated