let a = 5;
let b = 1;
a++;
// Add your code below this line
console.log(a);
let sumAB = a + b;
console.log(sumAB);
Understanding the Differences between the freeCodeCamp and Browser Console
// Open your browser console
let outputTwo = "This will print to the browser console 2 times";
// Use console.log() to print the outputTwo variable
console.log(outputTwo);
let outputOne = "Try to get this to log only once to the browser console";
// Use console.clear() in the next line to print the outputOne only once
console.clear();
// Use console.log() to print the outputOne variable
console.log(outputOne);