Javascript Course


In a script (or program) we use constants and variables datas. The variables can change their values during program execution. These data are called 'variables'.
- A variable is a name of a location in computer memory, used to store data.

Using variables

In a script (or program) we use variables and constants datas. The variables can change their values The simplest way to use and refer to a variable is to write it. The name of the variable permits the access at its value and also can change the value if necessary.


You can create a variable and assign a value to it using the var or let declarations:
var name ='Value';
//Sau
let name ='Value';
- Example:
<h4>Example JS variable</h4>

<script>
let str ='Some text';
document.write(str);
</script>

The difference between var and let

The difference between var and let is scoping.


- Se the following examples.
1) Example with "let":
<script>
let xn = 1;

if(xn ==1){
 let xn =2;
}

document.write(xn); // 1
</script>
2) Example with "var":
<script>
var xn = 1;

if(xn ==1){
 var xn =2;
}

document.write(xn); // 2
</script>

Variable Types

There are several types of data that can be assigned to variables. The type of the value it determines the type of the variable.


JavaScript has no fixed types of data, it allows you to change the type of a variable in the script, it can recognize when the data is a string, numerical or other type.
<script>
var x; //now is undefined

x = 5; //now is a number
document.write(x);

x = '<h4>MarPlo</h4>'; //now is a string
document.write(x);
</script>

Notice that the 'string' values (consisting of letters) are written between quotation marks (simples or doubles), and the 'number' can be written without quotation marks.


The life spam of a variable - A variable written within a function is a local variable, its value is recognized only within that function, it doesn't exist out of that function. Thus, another function can declare a variable with same name, JavaScript treats the two as different variables.
- Example:
<script>
//a function
function f(){
 var x ='val';
}

document.write(x); //Error: x is not defined
</script>

Defining and Using Constants

Constants are defined with the const declaration.
Unlike variables, the value of a constant can not be changed and can not be redefined, its value remains the same, fixed.

const X = 'MarPlo';

//trying to change the value it results error in browser console
X ='abc';

//redefining, it results error in browser console
const X = 123;
Like variables, constants are used by specifying their names, and it results its value.
<script>
const TJC = 'JavaScript Tutorial - Constants';
document.write(TJC);
</script>

Daily Test with Code Example

HTML
CSS
JavaScript
PHP-MySQL
Which meta tag provides a short description of the page?
<meta content="..."> <meta description="..."> <meta http-equiv="...">
<meta name="description" content="70-160 characters that describes the content of the page" />
Which CSS property is used to stop the wrapping effect of the "float"?
clear text-align position
#some_id {
  clear: both;
}
Click on the method which gets an array with all the elements in the document that have a specified tag name.
getElementsByName() getElementById() getElementsByTagName()
var divs = document.getElementsByTagName("div");
var nr_divs = divs.length;
alert(nr_divs);
Indicate the PHP function which returns the number of elements in array.
is_[) count() strlen()
$arr =[7, 8, "abc", 10);
$nri = count($arr);
echo $nri;        // 4
Defiing Variables and Constants

Last accessed pages

  1. String Object (667)
  2. Register and show online users and visitors (39428)
  3. PhpSpreadsheet - Read, Write Excel and LibreOffice Calc files (26057)
  4. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (137889)
  5. Adding text with ActionScript 3 (5501)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (202)
  2. Read Excel file data in PHP - PhpExcelReader (66)
  3. The Mastery of Love (56)
  4. PHP Unzipper - Extract Zip, Rar Archives (51)
  5. Working with MySQL Database (34)
Chat
Chat or leave a message for the other users
Full screenInchide