Using ticks understands a line break, but I'd prefer to use them to insert my variables in to the string, so the only way i have figured out how to have a cleaner code while still printing on the same line is to use a combination of backticks and + operators
message.reply(`**${id}**) `
+ `Email Address: ${email_address}, `
+ `Twitch Account: ${twitch_account}, `
+ `Discord Account: ${discord_account}, `
+ `YouTube Account: ${youtube_account}, `
+ `Minecraft Account: ${minecraft_account}, `
+ `Birthday: ${birthday}, `
+ `Registered: ${registered}, `
+ `Subscribed: ${subscribed}, `
+ `Sub Date: ${sub_date}, `
+ `Sub Streak: ${sub_streak}, `
+ `Administrator: ${admin}`);
this solves the issue but doesn't look as clean as I'd like it to be, is there a more conventional way to accomplish this task while still using ticks?
Also, removing the + causes every variable to be called as a function and returns TypeError:
TypeError: email_address is not a function