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
77 lines (58 loc) · 2 KB
/
Copy pathfns-and-scope.js
File metadata and controls
77 lines (58 loc) · 2 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
//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
var isTyler = function(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
var getName = function() {
return prompt("Please enter your name: ", "Spencer");
}
//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
var welcome = function() {
alert("Welcome "+getName());
}
//Next problem
//What is the difference between arguments and parameters?
//Answer Here
//Parameters are the variables that are included in the function declartion
//Arguements are the variables that are passed to that function when it is called.
//Next problem
//What are all the falsy values in JavaScript and how do you check if something is falsy?
//Answer Here
//0 null undefined NaN false ""
//console.log(!!x) - Where x is the value that you're checking
//Next Problem
//Create a function called myName that returns your name
//Code Here
var myName = function() {
return "Spencer";
}
//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
console.log(newMyName());
//Next problem
//Create a function called outerFn which returns an anonymous function which returns your name.
//Code Here
var outerFn = function() {
return function() {
return "Spencer";
}
}
//Now save the result of invoking outerFn into a variable called innerFn.
//Code Here
var innerFn = outerFn();
//Now invoke innerFn.
innerFn();