Project 13: Job Board Listing
JS Wizard
Builds on these lessons
Step 1 of 4
Project
Template Literals
Build a job summary string with a template literal — backticks and ${} interpolation — instead of + concatenation. It's easier to read at a glance, and you can freely include the multi-line text a job description needs.
🎯 Your Task
Please add the exact code shown in the light gray box below to your editor.Do not delete your previous code, just insert these new lines in the correct place!
const job = { title: "Front-End Engineer", company: "Nimbus Labs", location: "Remote" };
const summary = `${job.title} at ${job.company} — ${job.location}`;
console.log(summary);