'F' → Fullscreen
Create a new JavaScript file named 1-6-interpolation.js.
score variable.console.log() arguments, and once with a template literal.let score = 95;
console.log("You scored", score, "%.");console.log(`You scored ${score}%.`);name and age variables.let score = 95;
console.log("You scored", score, "%.");console.log(`You scored ${score}%.`);
let name = "Ada";let age = 16;
console.log(`${name} is ${age} years old.`);let score = 95;
console.log("You scored", score, "%.");console.log(`You scored ${score}%.`);
let name = "Ada";let age = 16;
console.log(`${name} is ${age} years old.`);
console.log(`If I take out a $1000 loan, and pay $25 each month, I will pay it off in ${1000 / 25} months.`);console.log(`A woodchuck could chuck ${32 * 60} wood panels every hour.`);Verify your program works correctly.
You scored 95 %.You scored 95%.Ada is 16 years old.If I take out a $1000 loan, and pay $25 each month, I will pay it off in 40 months.A woodchuck could chuck 1920 wood panels every hour.Answer the following questions before submitting your work.
console.log() version have an extra space that the template literal version didn't?${ }?Submit the required files to the appropriate dropbox.