forked from mottaquikarim/PCNWLab-Variables
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpset2.js
More file actions
26 lines (13 loc) · 769 Bytes
/
Copy pathpset2.js
File metadata and controls
26 lines (13 loc) · 769 Bytes
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
// MAKE SURE YOU CONSOLE LOG EVERY ANSWER TO ENSURE
// YOU'RE DOING IT CORRECTLY (please)
// pleae create:
// a variable called `helloWrold`, you can set it equal to whatever you want
// a variable called `this_is_snake_cased`, you can set it equal to whatever you want
// a variable called `thisVarHasNumbers111`, you can set it equal to whatever you want
// 1. create a string - it should be your first name
// 2. create another string - it should be your last name
// 3. create a third string using the first two strings you've defined
// it should read [FIRST NAME][SPACE][LAST NAME]
// 4. create a string - it should be your middle name
// 5. redefine the string in step 3. so that it now shows
// [FIRST NAME][SPACE][MIDDLE NAME][SPACE][LAST NAME]