forked from DevMountain/javascript-1-afternoon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fns-and-scope.js
98 lines (53 loc) · 2.05 KB
/
fns-and-scope.js
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
//////////////////PROBLEM 1////////////////////
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){
return name == "Tyler";
}
//////////////////PROBLEM 2////////////////////
//Create a function called getName that uses prompt() to prompt the user for their name, then returns the name.
//Code Here
function getName() {
return prompt("Please enter your name");
}
//////////////////PROBLEM 3////////////////////
//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(){
alert("Welcome, " + getName());
}
//////////////////PROBLEM 4////////////////////
//What is the difference between arguments and parameters?
//Answer Here
//An argument is the actual value, a parameter is a placeholder for an argument.
//////////////////PROBLEM 5////////////////////
//What are all the falsy values in JavaScript and how do you check if something is falsy?
//Answer Here
// null, 0, NaN, undefined, false, and ''. Use if(value){return true;}else{return false;} // value being the something you're checking.
//////////////////PROBLEM 6////////////////////
//Create a function called myName that returns your name
//Code Here
function myName() {
return "Scott";
}
//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
alert(newMyName());
//////////////////PROBLEM 7////////////////////
//Create a function called outerFn which returns an anonymous function which returns your name.
//Code Here
function outerFn(){
return function () {
return "Scott";
}
}
//Now save the result of invoking outerFn into a variable called innerFn.
//Code Here
var innerFn = outerFn();
//Now invoke innerFn.
innerFn();