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
#57Intermediate

What's the output?

// counter.js
let counter = 10;
export default counter;
modules
Practice
#89Intermediate

What's the output?

// module.js
export default () => 'Hello world';
export const name = 'Lydia';
...
objectsmodules
Practice
#134Advanced

How can we invoke `sum` in `sum.js` from `index.js?`

// sum.js
export default function sum(x) {
return x + x;
...
scopemodules
Practice

Related Concepts

#modules