I've been coding with Python for Discord but I wanted to make the switch to JS as there is more. I'm having trouble formatting a line of code, I've downloaded this music bot to test and be come familiar with JS. It was sending an embed but I want text. Here is the line of code:
if (this.textChannel) this.textChannel.send(f"Playing Now playing ${this.current.info.title} - Right Now!");
I know in Python it would be something like:
await ctx.send(f"Playing Now playing ${this.current.info.title} - Right Now!")
.
What is the equivalent to f?