js comment within literal string code example
Example: how to comment a template string
const fields = `
id,${ /* post id */'' }
message,${ /* post status/message */'' }
created_time,
permalink_url,
type
`;
console.log(fields);
ugly and effective (like ummm ... some certain programming languages)