Interested in supporting JS Questions Lab?|Contact for Sponsorship
JSJS QuestionsLAB
Questions
ProgressLeaderboardCreditsContact
JSJS QuestionsLAB

Built by @kitsunekode. Original questions and explanations by Lydia Hallie.

XProject Repository

Product

  • Questions
  • Progress
  • Release notes
  • Credits

Resources

  • Project Repository
  • Lydia's Original Repo

Question content is based on Lydia Hallie's original 2019 repository, so newer JavaScript language features may not be covered everywhere. Learn more

JSQL · v0.1.7
Keep Practicing

Related Concepts

View All
#112Advanced

What's the output?

function* generatorOne() {
yield ['a', 'b', 'c'];
}
...
objectsarrays+2
Practice
#144Advanced

What do we need to add to the `person` object to get `["Lydia Hallie", 21]` as the output of `[...person]`?

const person = {
name: "Lydia Hallie",
age: 21
...
objectsarrays+1
Practice
#19Beginner

What's the output?

function getAge(...args) {
console.log(typeof args);
}
...
objectsarrays+2
Practice

Related Concepts

#objects#arrays#generators