Lubinik Learning

Training mode

JavaScript Fundamentals

Time remaining:

0 / 20 answered

  1. 1. What is JavaScript commonly used for in a web page?

    What is JavaScript commonly used for in a web page?
    Hint

    Identify what the command or language feature is responsible for.

  2. 2. What does let declare?

    What does let declare?
    Hint

    Identify what the command or language feature is responsible for.

  3. 3. What does const declare?

    What does const declare?
    Hint

    Identify what the command or language feature is responsible for.

  4. 4. Which value is a JavaScript string?

    Which value is a JavaScript string?
    Hint

    Identify what the command or language feature is responsible for.

  5. 5. What does === compare in JavaScript?

    What does === compare in JavaScript?
    Hint

    Identify what the command or language feature is responsible for.

  6. 6. What is a JavaScript array?

    What is a JavaScript array?
    Hint

    Identify what the command or language feature is responsible for.

  7. 7. What is a plain JavaScript object commonly used for?

    What is a plain JavaScript object commonly used for?
    Hint

    Identify what the command or language feature is responsible for.

  8. 8. What is a JavaScript function?

    What is a JavaScript function?
    Hint

    Identify what the command or language feature is responsible for.

  9. 9. Which syntax begins a simple arrow function?

    Which syntax begins a simple arrow function?
    Hint

    Identify what the command or language feature is responsible for.

  10. 10. What does an if statement do?

    What does an if statement do?
    Hint

    Identify what the command or language feature is responsible for.

  11. 11. What does array.forEach( callback ) do?

    What does array.forEach( callback ) do?
    Hint

    Identify what the command or language feature is responsible for.

  12. 12. What does array.map( callback ) return?

    What does array.map( callback ) return?
    Hint

    Identify what the command or language feature is responsible for.

  13. 13. What does array.filter( callback ) return?

    What does array.filter( callback ) return?
    Hint

    Identify what the command or language feature is responsible for.

  14. 14. What does document.querySelector( selector ) return?

    What does document.querySelector( selector ) return?
    Hint

    Identify what the command or language feature is responsible for.

  15. 15. What does addEventListener() do?

    What does addEventListener() do?
    Hint

    Identify what the command or language feature is responsible for.

  16. 16. What does event.preventDefault() do?

    What does event.preventDefault() do?
    Hint

    Identify what the command or language feature is responsible for.

  17. 17. What does JSON.parse( text ) do?

    What does JSON.parse( text ) do?
    Hint

    Identify what the command or language feature is responsible for.

  18. 18. What does JSON.stringify( value ) do?

    What does JSON.stringify( value ) do?
    Hint

    Identify what the command or language feature is responsible for.

  19. 19. What does a Promise represent?

    What does a Promise represent?
    Hint

    Identify what the command or language feature is responsible for.

  20. 20. What does await do inside an async function?

    What does await do inside an async function?
    Hint

    Identify what the command or language feature is responsible for.