Search posts, tags, users, and pages
Faith Gaiciumia
Front-End Developer
While developing with Javascript and going through pre-written code, you often come across let, var and const all used while declaring variables in Javascript. The three are Javascript keywords that precede a variable name/identifier. These keywords...
Thanks for writing this amazing article :)
Quick feedback: You can add your code snippets in triple backticks to make it more readable.
var name="faith"; name="ian"; console.log(name);//ian let name="faith"; name="ian"; console.log(name);//ian
Bolaji Ayodeji
Software Engineer, Teacher, and Developer Advocate.
Thank you Bolaji. I've been wondering how ti highlight it that way. I use the triple back ticks..i really don't know what's wrong. But I'll check it again. Thanks a lot!
thank you! it works. I hadn't spaced it well. thanks
Yayy, congrats! Faith Gaiciumia
Thanks for writing this amazing article :)
Quick feedback: You can add your code snippets in triple backticks to make it more readable.
var name="faith"; name="ian"; console.log(name);//ian let name="faith"; name="ian"; console.log(name);//ian