omar12
1
Tell us what’s happening:
Your code so far
/* Data Types:
undefined, null, boolean, string, symbol, number, and object
*/
var myName = "Beau"
myName = 8
var ourName = "freeCodeCamp"
const pi = 3.14
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.89 Safari/537.36
.
Challenge: Declare JavaScript Variables
Link to the challenge:
Hey there, what is the problem?
ILM
3
to pass this challenge you just need to do this:
Use the var
keyword to create a variable called myName
.
remember that you are just declaring the variable, not giving it a value
semi colon at the end of each line in the code
...............................;
...............................;