forked from truecodersio/JavaScript_Variables
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
28 lines (22 loc) · 783 Bytes
/
app.js
File metadata and controls
28 lines (22 loc) · 783 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
27
28
console.log("Hello World!\n==========\n");
console.log(
"Follow the steps in the README.md file to complete the exercises:\n==========\n"
);
// Exercise 1
const firstName = "Nichole";
let lastName = "McGrew";
var age = 36;
// Exercise 2
let fullName = firstName + " " + lastName; //NicholeMcGrew
console.log(fullName);
// Template strings denoted by backticks
let TemplateFullName = `${firstName} ${lastName}`; // "Nichole McGrew"
console.log(TemplateFullName);
// Exercise 3
let city = "Yukon"
let pasttime = "coding"
let myStory = "I am " + fullName + ". I live in " + city + ". I like " + pasttime + ".";
console.log(myStory);
let TemplateMyStory = `I am ${fullName}. I live in ${city}. I like ${pasttime}. `;
console.log(TemplateFullName);
console.log(TemplateMyStory);