


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 < 3; i++) { funcs.push(function() { console.log(i); }); } for (let j = 0; j < 3; j++) { funcs.push(function() { console.log(j); }); } funcs.forEach(func => 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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

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

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics











Python is more suitable for beginners, with a smooth learning curve and concise syntax; JavaScript is suitable for front-end development, with a steep learning curve and flexible syntax. 1. Python syntax is intuitive and suitable for data science and back-end development. 2. JavaScript is flexible and widely used in front-end and server-side programming.

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

Understanding how JavaScript engine works internally is important to developers because it helps write more efficient code and understand performance bottlenecks and optimization strategies. 1) The engine's workflow includes three stages: parsing, compiling and execution; 2) During the execution process, the engine will perform dynamic optimization, such as inline cache and hidden classes; 3) Best practices include avoiding global variables, optimizing loops, using const and lets, and avoiding excessive use of closures.

Python and JavaScript have their own advantages and disadvantages in terms of community, libraries and resources. 1) The Python community is friendly and suitable for beginners, but the front-end development resources are not as rich as JavaScript. 2) Python is powerful in data science and machine learning libraries, while JavaScript is better in front-end development libraries and frameworks. 3) Both have rich learning resources, but Python is suitable for starting with official documents, while JavaScript is better with MDNWebDocs. The choice should be based on project needs and personal interests.

Both Python and JavaScript's choices in development environments are important. 1) Python's development environment includes PyCharm, JupyterNotebook and Anaconda, which are suitable for data science and rapid prototyping. 2) The development environment of JavaScript includes Node.js, VSCode and Webpack, which are suitable for front-end and back-end development. Choosing the right tools according to project needs can improve development efficiency and project success rate.

C and C play a vital role in the JavaScript engine, mainly used to implement interpreters and JIT compilers. 1) C is used to parse JavaScript source code and generate an abstract syntax tree. 2) C is responsible for generating and executing bytecode. 3) C implements the JIT compiler, optimizes and compiles hot-spot code at runtime, and significantly improves the execution efficiency of JavaScript.
