Javascript Flashcards
Is JavaScript a multithreaded language?
No, JavaScript is single-threaded.
What is a web worker?
A Web Worker in JavaScript is used to run scripts in the background, separate from the main execution thread of a web page. This allows the main thread (UI thread) to remain responsive while executing potentially time-consuming tasks such as data processing, computations, or API requests.
- Improves performance: Offloads CPU-intensive tasks from the main thread.
- Prevents UI freezing: Keeps the UI responsive while running heavy operations.
- Parallel execution: Enables multi-threading-like behavior in JavaScript.
True or False: Web workers can directly manipulate the DOM.
False
Fill in the blank: TypeScript is a superset of __________.
JavaScript
What is one major difference between JavaScript and TypeScript?
TypeScript includes static typing, while JavaScript is dynamically typed.
What is JavaScript primarily used for?
JavaScript is primarily used for creating interactive and dynamic content on websites.
True or False: JavaScript is a server-side programming language.
False: JavaScript is primarily a client-side programming language, although it can also be used on the server-side with environments like Node.js.
Fill in the blank: JavaScript is a _____-typed language.
dynamically
What does the ‘var’ keyword do in JavaScript?
The ‘var’ keyword declares a variable that can be re-assigned and has function scope.
What is the purpose of the ‘let’ keyword in JavaScript?
The ‘let’ keyword declares a block-scoped variable that can be re-assigned.
What is a JavaScript function?
A JavaScript function is a block of code designed to perform a particular task and can be executed when called.
Multiple Choice: Which of the following is NOT a JavaScript data type? A) String B) Object C) Number D) Class
D) Class
What is the use of ‘const’ in JavaScript?
‘const’ declares a block-scoped variable that cannot be re-assigned.
True or False: JavaScript supports object-oriented programming.
True: JavaScript supports object-oriented programming through prototypes and classes.
What is the purpose of the ‘this’ keyword in JavaScript?
‘this’ refers to the context in which a function is executed, typically the object that is calling the function.
What is an array in JavaScript?
An array is a data structure that can hold multiple values in a single variable, indexed by numbers.
What are JavaScript objects?
JavaScript objects are collections of key-value pairs that can store data and functions.
Fill in the blank: JavaScript uses _____ to handle asynchronous operations.
promises
What is the purpose of the ‘map’ method in JavaScript?
The ‘map’ method creates a new array populated with the results of calling a provided function on every element in the calling array.
Multiple Choice: Which of the following is a JavaScript framework? A) Angular B) HTML C) CSS D) SQL
A) Angular
What is event bubbling in JavaScript?
Event bubbling is a type of event propagation where an event starts from the target element and bubbles up to the root.
What does ‘JSON’ stand for?
JSON stands for JavaScript Object Notation, a lightweight data interchange format.
True or False: JavaScript can manipulate HTML and CSS.
True: JavaScript can be used to manipulate HTML elements and apply CSS styles dynamically.
What is the ‘DOMContentLoaded’ event in JavaScript?
The ‘DOMContentLoaded’ event is fired when the initial HTML document has been completely loaded and parsed.
Fill in the blank: In JavaScript, _____ functions are functions defined within another function.
nested
What is a closure in JavaScript?
A closure is a function that retains access to its lexical scope, even when the function is executed outside that scope.
Closures occur when a function is defined inside another function and retains access to the outer function’s variables even after the outer function has finished executing.
What is the difference between ‘==’ and ‘===’ in JavaScript?
’==’ checks for equality with type coercion, while ‘===’ checks for strict equality without type coercion.
What is the purpose of the ‘async’ keyword in JavaScript?
‘async’ is used to declare an asynchronous function that returns a promise.
What is the ‘fetch’ API used for in JavaScript?
The ‘fetch’ API is used to make network requests to servers and handle responses.
Multiple Choice: Which of the following is a method to loop through an array in JavaScript? A) forEach B) loop C) iterate D) traverse
A) forEach
What is type coercion in JavaScript?
Type coercion in JavaScript is the automatic conversion of values from one data type to another when an operation involves different types. JavaScript is a loosely typed language, meaning it can implicitly convert data types to make expressions work.
What is useReducer in React?
In JavaScript, particularly in React, useReducer is a React Hook used for managing complex state logic in a component. It is an alternative to useState, especially when the state transitions involve multiple sub-values or when the next state depends on the previous state.
How does the event loop work in JavaScript?
The JavaScript event loop manages asynchronous tasks by coordinating the call stack, task queue, and microtask queue. Synchronous code runs first, while asynchronous tasks (like setTimeout, fetch, and event listeners) are handled by the browser and queued. Microtasks (Promises, MutationObserver) have higher priority and execute before regular tasks from the callback queue. The event loop continuously checks if the call stack is empty before processing queued tasks. This ensures non-blocking execution and smooth performance in JavaScript.
What are the 3 types of scope in JavaScript? Explain each
JS follows a hierarchical scope chain
Local
Enclosing
Global
Local scope: inside the function itself
Enclosing: inside the outer function
Global: in the top-level script
JS uses lexical scope - the scope in which variables and functions are defined, where they appear in the code at the time of writing (not running)
Explain lexical scoping
JS follows lexical scoping - variable resolution is based on where the function is defined, not where it is called