High-level programming language.
In this unit, we will delve into the basic syntax rules of JavaScript and learn about variables.
JavaScript syntax refers to the set of rules that define how a JavaScript program should be written and structured. Here are some basic rules:
myVariable
and myvariable
are two different variables.//
and multi-line comments start with /*
and end with */
.Variables are fundamental to all programming languages. They are used to store data values. In JavaScript, we declare variables using the var
, let
, or const
keywords.
Here is an example of how to declare and assign variables:
var name = 'John'; let age = 30; const pi = 3.14;
In the above example, name
is a variable declared with var
and assigned the string 'John'. age
is a variable declared with let
and assigned the number 30. pi
is a constant declared with const
and assigned the value 3.14.
When naming your variables, it's important to follow certain conventions:
myVariableName
).Understanding the basic syntax and variables is crucial in learning JavaScript as it forms the foundation for more complex concepts. In the next unit, we will explore data types and how they are used in JavaScript.