forked from DevMountain/javascript-1-afternoon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfns-and-scope.js
More file actions
100 lines (57 loc) · 1.9 KB
/
fns-and-scope.js
File metadata and controls
100 lines (57 loc) · 1.9 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
//Once you complete a problem, open up Chrome and check the answer in the console.
var name = 'Tyler';
//Create a function called isTyler that accepts name as it's only parameter.
//If the argument you passed in is equal to 'Tyler', return true. If it's not, return false.
//Code Here
function isTyler(name) {
if(name === "Tyler") {
return true;
}else {
return false;
}
}
//Next problem
//Create a function called getName that uses prompt() to prompt the user for their name, then returns the name.
//Code Here
function getName () {
console.log("hi");
var yourName = prompt("What is your name?");
return yourName;
}
//Next Problem
//Create a function called welcome that uses your getName function you created in the previous problem to get the users name,
//then alerts "Welcome, " plus whatever the users name is.
//Code Here
function welcome() {
var name = getName()
alert("Welcome, " + name);
}
//Next problem
//What is the difference between arguments and parameters?
//Answer Here
//Parameters are placeholders. Arguments are the data that is passed in, in place of the parameter
//Next problem
//What are all the falsy values in JavaScript and how do you check if something is falsy?
//Answer Here
//fals, null, undefined, 0, Nan, ''
//Next Problem
//Create a function called myName that returns your name
//Code Here
function myName() {
return "Mike";
}
//Now save the function definition of myName into a new variable called newMyName
//Code Here
var newMyName = myName;
//Now alert the result of invoking newMyName
//Next problem
//Create a function called outerFn which returns an anonymous function which returns your name.
//Code Here
function outerFn() {
return function() {
return "Mike";
}
}//Now save the result of invoking outerFn into a variable called innerFn.
//Code Here
var innerFn = outerFn();
//Now invoke innerFn.