Tag: Javascript Fundamentals Odin Project

The Odin Project - JavaScript Fundamentals Part 1

Reading the linked info in the course is essential, it covers much more material than the questions asked below. To save unnecessary typing some redundant questions have been grouped together so answers can be given in one section in a more complete manner. How do you declare a variable in javascript? What are three different ways to declare a variable? Which one should you use when? You can use any of the reserved words let, const and var to declare a variable.

Read more...