Answers for "javascript write a function formatuser that takes in a user object, and uses a template to return a string with the name and email address separated by a newline."

3

javascript template literals

//Must use backticks, `, in order to work.

let a = 5;
let b = 10;
console.log(`Fifteen is ${a + b} and
not ${2 * a + b}.`);

//Output:
//Fifteen is 15 and not 20.
Posted by: Guest on September-21-2020

Code answers related to "javascript write a function formatuser that takes in a user object, and uses a template to return a string with the name and email address separated by a newline."

Code answers related to "Javascript"

Browse Popular Code Answers by Language