-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvariables.html
More file actions
26 lines (24 loc) · 1.21 KB
/
variables.html
File metadata and controls
26 lines (24 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./styles.css">
<title>JS Tutorial - Educational Websites</title>
</head>
<body>
<section>
<h1 id="intro">J<span>ava</span>S<span>crip</span>t Tu<span>tori</span>al</h1><br><br><br>
<!-- Lesson 3 -->
<h2 id="lesson-text">Lesson 3 - Variables</h2><br><br><br>
<h3 id="lesson-text2">JavaScript is the most popular programming language in the world. <br><br>
It is used for programming in Web Pages. You can use variables for storing data. You have to define a variable like this (name) = "text"; when you need to call it, just write the variable name. This is helpful because instead of writing the data stored in the variable, you just write the variable. It makes coding a whole lot easier.<br><br>Its not only for numbers, variables can also be used to store text.
<br>
<br>
<br>
<br>
<a href="./comments.html" class="green-btn">< Previous</a><span style="color:transparent;">-------------------------</span>
<a href="./arrays.html" class="green-btn">Next ></a>
</h3>
</section>
</body>
</html>