DEV Community

Discussion on: Let's Dive Into Core ES6 Concepts 🔥

Collapse
 
bias profile image
Tobias Nickel

For template literals I also like tags. They often used in graphql or sql. like:

const data = await sql`
  select * 
  from users
  where email like '%@${domain}';
`;

Collapse
 
abhisheknaiidu profile image
Abhishek Naidu

Yea, that's true!