Basic JavaScript - Declare a Read-Only Variable with the const Keyword

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

var fCC = "freeCodeCamp"; // Change this line
var fact = "is cool!"; // Change this line
fact = "is awesome!";
console.log(fCC, fact); // Change this line

Your browser information:

User Agent is: Mozilla/5.0 (iPad; CPU OS 15_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/222.1.463240275 Mobile/15E148 Safari/604.1

Challenge: Basic JavaScript - Declare a Read-Only Variable with the const Keyword

Link to the challenge:

It doesn’t look like you’ve made any changes to the code. Do you have a specific question about this challenge?

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.