-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0_variable.js
28 lines (19 loc) · 848 Bytes
/
0_variable.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//* ====================================
//* Values and Variable in JavaScript
//* ====================================
//* In JavaScript, values and variables are fundamental concepts that form the basis of programming.
//* Values: A value is a piece of information that a program can work with. It can be a number, text, true/false, or more complex data.
//* Variables: A variable is a container that holds a value. It has a name and can be used to store and manipulate data in a program.
// var myAge = 22;
// console.log(myAge);
//! Let's test
// var my_firstName = "John";
// console.log(my_firstName);
// var _myLastName$ = "Doe";
// console.log(_myLastName$);
// var 123myAge = 25;
// console.log(123myAge);
// var $cityName = "New York";
// console.log($cityName);
// var my@Email = "[email protected]";
// console.log(my@Email);