
Join the Conversation!
Subscribing gives you access to the comments so you can share your ideas, ask questions, and connect with others.
How do I remove the blur effect from my CSS?
I removed but the blur is still there. Any ideas?
filter: blur(5px);
Does work for removing blur from modals?
backdrop-filter: none;
Subscribing gives you access to the comments so you can share your ideas, ask questions, and connect with others.
By logging in, you'll unlock full access to this and other free tutorials on JSM Pro.
Why? Logging in lets us personalize your learning experience, track your progress, and keep you in the loop with new workshops, coding tips, and platform updates.
You'll also be the first to know about upcoming launches, events, and exclusive discounts.
No spam—just helpful content to level up your skills.
If that sounds fair, go ahead and log in to continue →
Enter your name and email to get instant access
##Looks like we found a thief monkey By the way, I liked the trick how you reached till here. You have a good sense of humor. You will improve a lot if you join our course with this passion.
var
(function-scoped, outdated)let
(block-scoped, modern and recommended)const
(block-scoped, cannot be reassigned)_
, or $
let let = 5;
is invalid)myVar
and myvar
are different)string
, number
, boolean
, null
, undefined
, bigint
, symbol
Objects
, Arrays
, Functions
Subscribing gives you access to a brief, insightful summary of each lecture to stay on track.
00:00:00 Welcome to the first module of your JavaScript journey, variables and data types.
00:00:06 Everything in programming starts with data, and in JavaScript, we use variables to store and manipulate that data.
00:00:14 Think of variables as labeled boxes where you can keep different types of information, numbers, texts, true or false values,
00:00:22 and even entire collections of data.
00:00:25 In this module, you'll learn how to create variables using lit, const, and var, understand primitive and complex data types,
00:00:33 and discover how JavaScript handles null and undefined values.
00:00:37 By the end of this module, you'll be able to confidently store and manage data like a pro.
00:00:43 So grab your keyboard and let's start coding.