Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
Learning JavaScript
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MohammadAli Keshavarz
Learning JavaScript
Commits
77f015ee
Commit
77f015ee
authored
Oct 23, 2019
by
MohammadAli Keshavarz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hoisting
parent
6e145226
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
index.html
section2/index.html
+16
-0
script.js
section2/script.js
+13
-0
No files found.
section2/index.html
View file @
77f015ee
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
section2
</title>
</head>
<body>
<h1>
How JS work?
<script
src=
"script.js"
></script>
</h1>
</body>
</html>
\ No newline at end of file
section2/script.js
View file @
77f015ee
calculateAge
(
1988
);
function
calculateAge
(
year
){
console
.
log
(
2018
-
year
);
}
var
calculateAge2
=
function
(
year
){
console
.
log
(
2018
-
year
);
}
calculateAge2
(
1988
)
console
.
log
(
x
);
var
x
=
23
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment