Chrome debugging in freecode camp

Tell us what’s happening:

Has Any body tried the article ! and was able to succesfully debug in chrome console .
Please guide .
Article name : How to Debug JavaScript with your Browser’s Devtools
Url of the article " https://www.freecodecamp.org/news/how-to-debug-javascript-with-your-browsers-devtools/"
Link to the challenge:
https://www.freecodecamp.org/learn/javascript-algorithms-and-data-structures/basic-algorithm-scripting/factorialize-a-number
Your code so far


//# sourceURL=factorialize.js


function factorialize(num) {
return num;
}

factorialize(5);

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Mobile Safari/537.36.

Challenge: Factorialize a Number

Link to the challenge:

Just right click your mouse.
Go to Inspect.
Go to Console.
Now you’re in the console. You can write JavaScript here.

If you write console.log statements in your Free Code Camp code, it will show up here.

Personally, I like the Free Code Camp setup. Whatever you console.log shows up under the function. You can see it in real time as you code, which I like. For example, wrap the function call that says “factorialize(5)” in the console.log like this:

console.log( factorialize(5) ); and you can see changes in real time.