1 |
Is JS single threaded or multi threaded? |
JavaScript is single-threaded, and all the JavaScript code executes in a single thread. |
2 |
Is JS synchronous or asynchronous? |
By default, JavaScript is a synchronous, single-threaded, and blocking programming language. |
3 |
How can we make a function that works like multithreading? |
We can use JS as multithreading using Web Workers API, or asynchronous programming using promises. |
4 |
How many versions are introduced in JS? |
- ES1 (released in 1997)
- ES2 (released in 1998)
- ES3 (released in 1999)
- ES4 (never released)
- ES5 (released in 2009)
- ES6/ES2015 (released in 2015)
- ES7/ES2016 (released in 2016)
- ES8/ES2017 (released in 2017)
- ES9/ES2018 (released in 2018)
- ES10/ES2019 (released in 2019)
- ES11/ES2020 (released in 2020)
- ES12/ES2021 (released in 2021)
|
5 |
What is the difference between var, let, and const? |
- In
var , we can redeclare the same variable and reassign its value. - In
let , we cannot redeclare the same variable but can reassign its value. - In
const , we cannot redeclare the same variable and cannot reassign its value. |
6 |
What are the scopes in JS (Local and Global Scope)? |
- The scope in which variables are declared in a code block or function is called the local scope.
- The scope in which a variable is declared outside of a function is called the global scope. This variable is accessible throughout the program.
|
7 |
What is hoisting in JS? |
Hoisting is a mechanism in JS where functions and variables are moved to the top of their respective scopes before runtime. |
8 |
What is the difference between an Arrow Function and a Simple Function, and how does this work in them? |
A simple/regular function can bind its own this . However, an arrow function in ES6 cannot bind its own this . |
9 |
What is a callback function? |
A callback function is a function that is passed as an argument to another function and is called when that function is executed. callback example |
10 |
What are Promises? |
A Promise is an object that represents a value that may not be available yet, but will be at some point in the future. Promises are commonly used to handle network requests. A Promise has three states: pending, fulfilled, or rejected. |
11 |
What is a Generator Function, and how does yield work in it? |
A generator function is a special type of function in JavaScript that allows you to pause and resume the execution of a function. When you use the yield keyword inside a generator function, it pauses the execution of the function and returns a value to the iterator. The next time you call the next() method on the iterator, the function resumes execution from the point where it left off. Generator Function example |
12 |
Aysnc & await? |
Async is used to behave a function like Asyncronus, await is used for waiting a process. |
13 |
What is Closure? |
Return a Function from inside function is called Closure and the inner function has access to the outer function's variables and parameters. A closure allows the inner function to "remember" the environment in which it was created, even after the outer function has returned. Closure example |
14 |
Event Loop? |
Event Loop has a one simple job to moniter the Global execution stack and message queue. |
15 |
Event Queue? |
Event Queue is responsible for sending new functions to the stack for processing. |
16 |
Stack, Hash, Map? |
- A
Stack is a data structure that follows the Last-In-First-Out (LIFO) principle. It is similar to a stack of plates, where the last plate you put on top is the first one you take off. In JavaScript, you can implement a stack using an array and the built-in methods push() and pop(). - A
Hash is a data structure that maps keys to values. It is also known as a hash table or a dictionary. Hashes are commonly used for fast data lookup and retrieval. In JavaScript, you can implement a hash using an object literal, where the keys represent the data you want to store, and the values represent the corresponding values. - A
Map is a data structure that also maps keys to values, but it allows any type of key, not just strings. It is similar to a Hash, but with more flexibility. Maps are commonly used for complex data structures and algorithms. In JavaScript, you can implement a Map using the built-in Map object. Stack, Hash, Map example |
17 |
SetTimeOut |
SetTimeOut is web API for setting a timer to execute a code after the timer expires. |
18 |
SetIntervel |
SetIntervel repeatedly calls a function or executes a code snippet with a fixed time delay. |
19 |
Destructureing |
Object destructuring is a useful JavaScript feature to extract values from arrays or properties from objects and bind them to variables. |
20 |
In JS can we use map() on object? |
Yes we can use the map() method on an object, but only on its keys or values, not on the object itself. |
21 |
Difference between forEach() and map() |
forEach() and map() iterate over arrays, but forEach() modifies oringnal array & map() returns new array. |
22 |
Function recursion |
A recursive function is a function that calls itself somewhere within the body of the function. |