Project 1: Portfolio
JS Wizard
Builds on these lessons
Step 1 of 3
Project
Statements & console.log
A JavaScript file is a sequence of statements, each usually ending in a semicolon. Declare a constant holding the portfolio owner's name, then print it with console.log — the most basic way to see what your code is actually doing.
🎯 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!
// Portfolio data script
const portfolioOwner = "Alex Rivera";
console.log(portfolioOwner);← Previous
Next →