Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Basics Working with Strings Write a Template Literal

JD Cutter
JD Cutter
1,951 Points

Is this module broken? https://teamtreehouse.com/library/javascript-basics/working-with-strings/write-a-template-literal

Is this incorrect? I click "Check Work" but nothing happens. Not even a wrong answer message.

app.js
const flavor = "Blueberry";
const type = "Smoothie";
const price = 4.99;

const drink = `${flavor} ${type}: $${price}`;

console.log(drink);
Travis McCallum
Travis McCallum
5,109 Points

I can report the same issue in my own module for CSS. I think their website is having server-wide issues. Haven't seen anything posted on social media yet. @Treehouse!

Im also having issues but on a module in the NodeJS basics course

JD Cutter
JD Cutter
1,951 Points

Okay, phew. That is a load off. I was beating my head there for a moment wondering what I did incorrectly. I'll let it do its thing for a bit and try again. Thank you both for your prompt responses.

2 Answers

JD Cutter
JD Cutter
1,951 Points

It was just a time issue. Once I came back a few hours later everything worked on the page I had loaded up. It must have been server side.

It only lets you pass it if you remove their example using catenation!!!