Question: 1-What is the output for the following code? const veggies = [green beans, broccoli, onions]; const veganFood = [apples, ...veggies]; console.log(veganFood); a- [apples, veggies] b-[[apples],

1-What is the output for the following code?

const veggies = ["green beans", "broccoli", "onions"]; const veganFood = ["apples", ...veggies]; console.log(veganFood);

a- ["apples", "veggies"]

b-[["apples"], ["green beans", "broccoli", "onions"]]

c-["apples", ["green beans", "broccoli", "onions"]]

d-["apples", "green beans", "broccoli", "onions"]

2-Given the following array, what would be the return value of planets[7]? const planets = ["Mercury", "Venus", "Earth", "Mars", "Jupiter", "Saturn", "Uranus", "Neptune"]

a-neptune

b-undefined

c-uranus

3- The console.log in the following function will execute.

function say(greeting, firstName) { return `${greeting}, ${firstName}!`; console.log('I was called!'); }

a-true

b-false

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!