scrimba
Frontend Career Path
Essential JavaScript concepts
JS Mini Projects
Import Export (default)
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
Import Export (default)
Expand for more info
index.js
run
preview
console
import { interplanetaryDestinationsArr, shortSpaceTripsArr } from '/data.js'

console.log(interplanetaryDestinationsArr)
Console
[
{destination:
"Nova Prime"
, distanceKM:
500000000
, travelTimeDays:
365
, priceUSD:
1000000
, description:
"Experience the exotic beauty and thriving ecosystem of Nova Prime."
}
,
{destination:
"Lunar Outpost Alpha"
, distanceKM:
384400
, travelTimeDays:
3
, priceUSD:
50000
, description:
"Visit the first human outpost on the Moon and witness breathtaking lunar landscapes."
}
,
{destination:
"Titan Oasis"
, distanceKM:
1200000000
, travelTimeDays:
730
, priceUSD:
5000000
, description:
"Explore the methane lakes and the potential for extraterrestrial life on Titan."
}
,
{destination:
"Venusian Cloud City"
, distanceKM:
41400000
, travelTimeDays:
300
, priceUSD:
750000
, description:
"Marvel at the floating cities in the dense atmosphere of Venus."
}
,
{destination:
"Europa Resort"
, distanceKM:
628300000
, travelTimeDays:
480
, priceUSD:
2500000
, description:
"Indulge in the luxury accommodations and ice-covered wonders of Europa."
}
,
{destination:
"Asteroid Mining Colony Zeta"
, distanceKM:
420000000
, travelTimeDays:
320
, priceUSD:
1500000
, description:
"Experience the thrill of mining operations in the depths of space on Asteroid Mining Colony Zeta."
}
,
{destination:
"Solaris Prime"
, distanceKM:
2500000000
, travelTimeDays:
1095
, priceUSD:
10000000
, description:
"Embark on an adventure to the exotic and resource-rich Solaris Prime."
}
,
{destination:
"Martian Metropolis"
, distanceKM:
225000000
, travelTimeDays:
180
, priceUSD:
500000
, description:
"Immerse yourself in the bustling city life and terraformed landscapes of Mars."
}
,
{destination:
"Enceladus Retreat"
, distanceKM:
1400000000
, travelTimeDays:
800
, priceUSD:
3000000
, description:
"Relax in the tranquil geysers and ice-covered paradise of Enceladus."
}
,
{destination:
"Neptunian Deep"
, distanceKM:
4350000000
, travelTimeDays:
2000
, priceUSD:
15000000
, description:
"Dive into the mysteries of the Neptunian Deep and uncover its hidden secrets."
}
]
,
/index.html
-3:57