We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a155a6 commit 22e971aCopy full SHA for 22e971a
exercises/part3.ts
@@ -1,13 +1,16 @@
1
+// URL for the instructions:
2
+// https://education.launchcode.org/intro-to-professional-web-dev/chapters/typescript/exercises.html
3
+
4
let spacecraftName: string = "Space Shuttle";
5
let speedMph: number = 17500;
6
let kilometersToMars: number = 225000000;
7
let kilometersToTheMoon: number = 384400;
8
let milesPerKilometer: number = 0.621;
9
-// Part 3 - Code the getDaysToLocation function here:
10
+// Code the "getDaysToLocation" function here:
11
12
13
14
15
-// Call the function and print the output here:
16
+// Call the function and print the output:
0 commit comments