Basic JavaScript - Declare JavaScript Variables

Tell us what’s happening:
Describe your issue in detail here.

Your code so far

/*Data types:
undefined,null,boolean,string,symbol,bigint,number,and object
*/

VAR myNAME = "Emir";

myNAME = "16";

let 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/116.0.0.0 Safari/537.36

Challenge: Basic JavaScript - Declare JavaScript Variables

Link to the challenge:

Hello.

In this step, you only need to create a variable called myName. Dont´t need give a value, and don´t need to create more variables.

Check your code. Remove the innecessary data (or reset the step and start again)
And check your uppercases and lowercases. In JavaScript isn´t the same VAR than var. Neither isn´t the same myNAME than myName. Keep this in mind.

Grets.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.