Project 2: Blog Layout
JS Wizard
Builds on these lessons
Step 1 of 3
Project
Variables & Data Types
Declare a string for the post title, a number for its read time, and a boolean for whether it's published — JavaScript's three most common primitive types. Log all three so you can see their values.
🎯 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 postTitle = "Understanding Closures";
const readTimeMinutes = 8;
const isPublished = true;
console.log(postTitle, readTimeMinutes, isPublished);