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
#1Beginner

What's the output?

function sayHi() {
console.log(name);
console.log(age);
...
scopeobjects+1
Practice
#2Beginner

What's the output?

for (var i = 0; i < 3; i++) {
setTimeout(() => console.log(i), 1);
}
...
asyncscope+1
Practice
#3Beginner

What's the output?

const shape = {
radius: 10,
diameter() {
...
scopeobjects+1
Practice

Related Concepts

#scope#generators