search
HomeWeb Front-endJS TutorialYou're Decent At JavaScript If You Can Answer These uestions Correctly

You’re Decent At JavaScript If You Can Answer These uestions Correctly

No cheating please ?

The concepts in these questions are ones I have encountered in production code. The goal of this quiz is to test relevant and essential JavaScript knowledge.

Q1: Understand Context

What will be logged to the console?

const user = {
  name: "Alice",
  isBanned: false,
  pricing: 'premium',
  isSubscribedTo: function(channel) {
    return channel === "JavaScript";
  },
  getName: function() {
    return this.name;
  },
  getStatus: function() {
    const status = () => {
      return `Name: ${this.getName()}, Banned: ${this.isBanned}`;
    };
    return status();
  }
};

const channel = "JavaScript";
const getName = user.getName;
const getStatus = user.getStatus;

console.log(user.getStatus());
console.log(getName());
console.log(getStatus());

Answers:

  • A) Name: Alice, Banned: false, undefined, TypeError: Cannot read property 'getName' of undefined
  • B) Name: Alice, Banned: false, undefined, Name: undefined, Banned: undefined
  • C) Name: Alice, Banned: false, undefined, Name: Alice, Banned: false
  • D) Name: Alice, Banned: false, undefined, TypeError: this.getName is not a function

Q2: Closure

What will be logged to the console?

function createCounter() {
  let count = 0;
  return function() {
    count++;
    console.log(count);
  }
}

const counter1 = createCounter();
const counter2 = createCounter();

counter1();
counter1();
counter2();

Answers:

  • A) 1, 2, 3
  • B) 1, 2, 1
  • C) 1, 1, 1
  • D) 1, 2, undefined

Q3: Asynchronous JavaScript

What will be logged to the console?

console.log('Start');

setTimeout(() => console.log('Timeout 1'), 0);

Promise.resolve().then(() => console.log('Promise 1'));

setTimeout(() => console.log('Timeout 2'), 0);

Promise.resolve().then(() => console.log('Promise 2'));

console.log('End')

Answers:

  • A) Start, End, Timeout 1, Timeout 2, Promise 1, Promise 2
  • B) Start, End, Promise 1, Promise 2, Timeout 1, Timeout 2
  • C) Start, Promise 1, Promise 2, Timeout 1, Timeout 2, End
  • D) Start, Timeout 1, Timeout 2, Promise 1, Promise 2, End

Q4: Prototypes in JS

What will be logged to the console?

function Animal(name) {
  this.name = name;
}

Dog.prototype.speak = function() {
  console.log(`${this.name} makes a sound.`);
}

function Dog(name) {
  Animal.call(this, name);
}

Dog.prototype.constructor = Dog;

const dog = new Dog('Rex');
dog.speak();

console.log(dog instanceof Dog);
console.log(dog instanceof Animal);
  • A) Rex makes a sound., true, false
  • B) Rex makes a sound., true, true
  • C) Error: speak is not a function
  • D) Rex makes a sound., false, true

Q5: Default params

What will be logged for each call?

function displayUserInfo({ name = "Guest", role = "User" } = {}) {
  console.log(`Name: ${name}, Role: ${role}`);
}

displayUserInfo();
displayUserInfo({});
displayUserInfo({ name: "Alice" });
displayUserInfo(null);

Q6: Closure and functions

What will be logged to the console?

const funcs = [];
for (var i = 0; i  func());

Q7: Event Handling and Propagation

document.body.innerHTML = `
  <div id="outer">
    Outer
    <div id="middle">
      Middle
      <button id="inner">Inner</button>
    </div>
  </div>
`;

const outer = document.getElementById('outer');
const middle = document.getElementById('middle');
const inner = document.getElementById('inner');

outer.addEventListener('click', () => console.log('Outer Bubble'), false);
outer.addEventListener('click', () => console.log('Outer Capture'), true);

middle.addEventListener('click', (e) => {
  console.log('Middle Bubble');
}, false);
middle.addEventListener('click', () => console.log('Middle Capture'), true);

inner.addEventListener('click', () => console.log('Inner Bubble'), false);
inner.addEventListener('click', (e) => {
  console.log('Inner Capture');
}, true);

inner.click();
  • A) Inner Capture, Inner Bubble, Middle Capture, Middle Bubble, Outer Capture, Outer Bubble
  • B) Outer Capture, Middle Capture, Inner Capture, Inner Bubble, Middle Bubble
  • C) Inner Bubble, Middle Bubble, Outer Bubble
  • D) Outer Capture, Middle Capture, Inner Capture, Inner Bubble, Middle Bubble, Outer Bubble
  • E) Outer Capture, Middle Capture, Inner Capture, Inner Bubble

You can verify this yourself by pasting the code into the console of the dev tool.

Solution Q1:

The correct answer is B.

Explanation: The user.getStatus() call logs "Name: Alice, Banned: false" because the arrow function status correctly accesses this within its enclosing scope. However, getName() logs undefined because it loses its this context when assigned to a standalone variable, leading to getStatus() also logging undefined for both name and isBanned.

Solution Q2:

The correct answer is B.

Explanation: counter1 and counter2 each have their own separate count variables because each call to createCounter() creates a new closure. Thus, counter1 logs 1 and 2 on its first two calls, and counter2 logs 1 on its first call.

Solution Q3:

The correct answer is B.

Explanation: The synchronous console.log calls log "Start" and "End" first. Promises have higher priority than setTimeout in the event loop, so "Promise 1" and "Promise 2" are logged next, followed by "Timeout 1" and "Timeout 2".

Solution Q4:

The correct answer is A.

Explanation: So this one is a bit tricky. The speak method is correctly defined on Dog.prototype, dog is an instance of Dog.

Inside the Dog constructor, this line calls the Animal constructor with the current this context and the name argument. This effectively sets the name property on the newly created Dog instance.

Now let’s say the code would be like this:

// Code before...

Dog.prototype = Object.create(Animal.prototype);
Dog.prototype.constructor = Dog;

// Code after...

Then the correct answer would be B).

Side note: If you want to verify it yourself you need to paste it into a browser (and not an LLM which gets the answer incorrectly).

Solution Q5:

The correct output is:

  • Name: Guest, Role: User
  • Name: Guest, Role: User
  • Name: Alice, Role: User
  • TypeError: Cannot destructure property 'name' of 'null' as it is null.

Solution Q6:

Answer: 3, 3, 3, 0, 1, 2

Explanation: The first loop uses var, which has function scope, so all functions in the first half of the array close over the same i, which is 3 by the end of the loop. The second loop uses let, which has block scope, so each function in the second half closes over a different j value (0, 1, 2), resulting in the output: 3, 3, 3, 0, 1, 2.

Solution Q7:

The correct answer is D.

Explanation:

  • The event starts at the top (document root) and moves down to the target element during the capture phase, triggering capture listeners (Outer Capture, Middle Capture, Inner Capture).
  • Once it reaches the target (inner button), it triggers the target’s listeners in order of registration (Inner Capture, then Inner Bubble).
  • Then it bubbles up, triggering bubble listeners on each ancestor (Middle Bubble, Outer Bubble).

This example demonstrates a full lifecycle of an event. You can stop the propagation by calling stopImmediatePropagation or stopPropagation function.

The above is the detailed content of You're Decent At JavaScript If You Can Answer These uestions Correctly. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Javascript Data Types : Is there any difference between Browser and NodeJs?Javascript Data Types : Is there any difference between Browser and NodeJs?May 14, 2025 am 12:15 AM

JavaScript core data types are consistent in browsers and Node.js, but are handled differently from the extra types. 1) The global object is window in the browser and global in Node.js. 2) Node.js' unique Buffer object, used to process binary data. 3) There are also differences in performance and time processing, and the code needs to be adjusted according to the environment.

JavaScript Comments: A Guide to Using // and /* */JavaScript Comments: A Guide to Using // and /* */May 13, 2025 pm 03:49 PM

JavaScriptusestwotypesofcomments:single-line(//)andmulti-line(//).1)Use//forquicknotesorsingle-lineexplanations.2)Use//forlongerexplanationsorcommentingoutblocksofcode.Commentsshouldexplainthe'why',notthe'what',andbeplacedabovetherelevantcodeforclari

Python vs. JavaScript: A Comparative Analysis for DevelopersPython vs. JavaScript: A Comparative Analysis for DevelopersMay 09, 2025 am 12:22 AM

The main difference between Python and JavaScript is the type system and application scenarios. 1. Python uses dynamic types, suitable for scientific computing and data analysis. 2. JavaScript adopts weak types and is widely used in front-end and full-stack development. The two have their own advantages in asynchronous programming and performance optimization, and should be decided according to project requirements when choosing.

Python vs. JavaScript: Choosing the Right Tool for the JobPython vs. JavaScript: Choosing the Right Tool for the JobMay 08, 2025 am 12:10 AM

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript: Understanding the Strengths of EachPython and JavaScript: Understanding the Strengths of EachMay 06, 2025 am 12:15 AM

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScript's Core: Is It Built on C or C  ?JavaScript's Core: Is It Built on C or C ?May 05, 2025 am 12:07 AM

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript Applications: From Front-End to Back-EndJavaScript Applications: From Front-End to Back-EndMay 04, 2025 am 12:12 AM

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function