35
loading...
This website collects cookies to deliver better user experience
const jedi = ['Yoda', 'Qui Gon Jinn', 'Obi Wan Kenobi', 'Luke SkyWalker']
const sith = ['Emperor Palpatine', 'Darth Vader', 'Darth Maul', 'Kylo Ren']
console.log(jedi[0])
console.log(jedi[1])
console.log(jedi[2])
console.log(jedi[3])
Yoda
Qui Gon Jinn
Obi Wan Kenobi
Luke SkyWalker
const [firstJedi, secondJedi] = jedi
console.log(firstJedi)
Yoda
const [firstJedi, secondJedi] = jedi
console.log(secondJedi)
Qui Gon Jinn
const jedi = ['Yoda', 'Qui Gon Jinn', 'Obi Wan Kenobi', 'Luke SkyWalker']
const sith = ['Emperor Palpatine', 'Darth Vader', 'Darth Maul', 'Kylo Ren']
const jediVsSith = [...jedi, ...sith]
console.log(jediVsSith)
Yoda
Qui Gon Jinn
Obi Wan Kenobi
Luke SkyWalker
Emperor Palpatine
Darth Vader
Darth Maul
Kylo Ren
const darthVader = {
age: 45,
lightSaber: 'red',
famouseLine: 'I am your FATHER!!'
}
const yoda = {
age: 900,
lightSaber: 'green',
famouseLine: 'Fear is the path to the darkside.'
}
const { age, lightSaber } = yoda
console.log(age)
console.log(lightSaber)
900
green
const { age: yodaAge, lightSaber: yodaLightSaber } = yoda
console.log(yodaAge)
console.log(yodaLightSaber)
900
green
const { age: yodaAge, lightSaber: yodaLightSaber, anotherYodaQuote = 'The greatest teacher, failure is.' } = yoda
console.log(yodaAge)
console.log(yodaLightSaber)
console.log(anotherYodaQuote)
900
green
The greatest teacher, failure is.
const {age, ...rest} = yoda
console.log(rest)
lightSaber: 'green'
famouseLine: 'Fear is the path to the darkside.'
const darthVader = {
lightSaber: 'red',
famouseLine: 'I am your FATHER!!'
}
const yoda = {
age: 900,
lightSaber: 'green',
}
const newJedi = {...darthVader, ...yoda}
console.log(newJedi)
age: 900
lightSaber: 'green'
famouseLine: 'I am your FATHER!!'