-
-
Notifications
You must be signed in to change notification settings - Fork 865
New Challenge Named Variables added #64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@0vai5 can you plz move the page to concepts? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets include only challenges.
No key learning and feature requests. Also please follow the standards used for other challenges
Can You define what are you asking about, If you want i can include that in the concepts as well. |
I have removed the feature requests and also removed the key learnings |
Whats the update regarding the changes that were made by me @sadanandpai |
Also Updated Headers, Followed other pages for ref and also removed outcomes
updated as per the requirments @sadanandpai |
C## Variables Challenge
Overview
This challenge introduces users to fundamental concepts related to JavaScript variables, focusing on variable declaration, reassignment, and scoping rules.
Tasks Covered
Task 1: Variable Declaration with
var
var
keyword and log their values to the console.Task 2: Variable Declaration with
let
var
andlet
by declaring variables withlet
and observing their behavior when reassigned.Task 3: Using
const
for Constantsconst
to declare constants and understand why they cannot be reassigned.Task 4: Type Checking with
typeof
typeof
operator to check the data type of variables in JavaScript.Task 5: Variable Reassignment
let
and observe the outcome.Task 6: Error Handling with Constants
const
and observe the resulting error.Key Learnings
var
,let
, andconst
.typeof
to determine the data type of variables dynamically.Additional Notes