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
f82d6479
Commit
f82d6479
authored
Oct 10, 2019
by
MohammadAli Keshavarz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Function Statements and Expressions
parent
6a472c1f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
1 deletion
+29
-1
script.js
script.js
+29
-1
No files found.
script.js
View file @
f82d6479
...
@@ -221,7 +221,7 @@ if (height === '23') {
...
@@ -221,7 +221,7 @@ if (height === '23') {
/*****************************
/*****************************
* Functions
* Functions
*/
*/
/*
function calculateAge(birthYear) {
function calculateAge(birthYear) {
return 2018 - birthYear;
return 2018 - birthYear;
}
}
...
@@ -243,4 +243,32 @@ function yearsUntilRetirement(year, firstName) {
...
@@ -243,4 +243,32 @@ function yearsUntilRetirement(year, firstName) {
yearsUntilRetirement(1990, 'John');
yearsUntilRetirement(1990, 'John');
yearsUntilRetirement(1948, 'Mike');
yearsUntilRetirement(1948, 'Mike');
yearsUntilRetirement(1969, 'Jane');
yearsUntilRetirement(1969, 'Jane');
*/
/*****************************
* Function Statements and Expressions
*/
// Function declaration
// function whatDoYouDo(job, firstName) {}
// Function expression
var
whatDoYouDo
=
function
(
job
,
firstName
)
{
switch
(
job
)
{
case
'teacher'
:
return
firstName
+
' teaches kids how to code'
;
case
'driver'
:
return
firstName
+
' drives a cab in Lisbon.'
case
'designer'
:
return
firstName
+
' designs beautiful websites'
;
default
:
return
firstName
+
' does something else'
;
}
}
console
.
log
(
whatDoYouDo
(
'teacher'
,
'John'
));
console
.
log
(
whatDoYouDo
(
'designer'
,
'Jane'
));
console
.
log
(
whatDoYouDo
(
'retired'
,
'Mark'
));
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