javascript questions for interview
javascript questions for interview
No. Questions
https://md2pdf.netlify.app 1/167
26/4/2021 md2pdf - Markdown to PDF
No. Questions
24 What is memoization
25 What is Hoisting
34 What is IndexedDB
37 What is a cookie
https://md2pdf.netlify.app 2/167
26/4/2021 md2pdf - Markdown to PDF
41 What are the differences between cookie, local storage and session storage
No. Questions
51 What is a promise
64 What is promise.all
https://md2pdf.netlify.app 3/167
26/4/2021 md2pdf - Markdown to PDF
No. Questions
75 What is eval
79 What is isNaN
https://md2pdf.netlify.app 4/167
26/4/2021 md2pdf - Markdown to PDF
92 What are the tools or techniques used for debugging JavaScript code
No. Questions
https://md2pdf.netlify.app 5/167
26/4/2021 md2pdf - Markdown to PDF
No. Questions
https://md2pdf.netlify.app 6/167
26/4/2021 md2pdf - Markdown to PDF
141 What is the way to find the number of parameters expected by a function
No. Questions
150 Can you write a random integers function to print integers with in a range
https://md2pdf.netlify.app 7/167
26/4/2021 md2pdf - Markdown to PDF
168 How do you get the image width and height using JS
175 What are the ways to execute javascript after page load
No. Questions
186 What happens if you do not use rest parameter as a last argument
https://md2pdf.netlify.app 8/167
26/4/2021 md2pdf - Markdown to PDF
190 How do you determine two values same or not using object
197 What are the differences between freeze and seal methods
200 What is the main difference between Object.values and Object.entries method
201 How can you get the list of keys of any object
No. Questions
https://md2pdf.netlify.app 9/167
26/4/2021 md2pdf - Markdown to PDF
215 What is the precedence order between local and global variables
222 What are the conventions to be followed for the usage of swtich case
228 What are the different error names from error object
https://md2pdf.netlify.app 10/167
26/4/2021 md2pdf - Markdown to PDF
No. Questions
233 How do you perform language specific date and time formatting
246 How do you find min and max values without Math functions
https://md2pdf.netlify.app 11/167
26/4/2021 md2pdf - Markdown to PDF
256 What happens if you write constructor more than once in a class
No. Questions
274 What are the DOM methods available for constraint validation
https://md2pdf.netlify.app 12/167
26/4/2021 md2pdf - Markdown to PDF
No. Questions
285 How do you check whether an array includes a particular value or not
292 How do you invoke javascript code in an iframe from parent page
295 What are the different methods to find HTML elements in DOM
https://md2pdf.netlify.app 13/167
26/4/2021 md2pdf - Markdown to PDF
No. Questions
326 What are the problems with postmessage target origin as wildcard
https://md2pdf.netlify.app 14/167
26/4/2021 md2pdf - Markdown to PDF
No. Questions
340 What are the list of cases error thrown from non-strict mode to strict mode
347 How do you return all matching strings against a regular expression
349 What is the output of below console statement with unary operator
https://md2pdf.netlify.app 15/167
26/4/2021 md2pdf - Markdown to PDF
363 How do you map the array values without using map method
No. Questions
372 How do you display data in a tabular format using console object
https://md2pdf.netlify.app 16/167
26/4/2021 md2pdf - Markdown to PDF
382 What are the different ways to deal with Asynchronous Code
No. Questions
402 What is the difference between Function constructor and function declaration
https://md2pdf.netlify.app 17/167
26/4/2021 md2pdf - Markdown to PDF
414 What are the differences between arguments object and rest parameter
415 What are the differences between spread operator and rest parameter
418 What are the differences between for...of and for...in statements
https://md2pdf.netlify.app 18/167
26/4/2021 md2pdf - Markdown to PDF
No. Questions
Questions:
i. Object constructor:
The simplest way to create an empty object is using the Object constructor. Currently this
The create method of Object creates a new object by passing the prototype object as a
parameter
The object literal syntax is equivalent to create method when it passes null as parameter
Create any function and apply the new operator to create object instances,
function Person(name){
var object = {};
object.name=name;
object.age=21; return
object;
https://md2pdf.netlify.app 19/167
26/4/2021 md2pdf - Markdown to PDF
}
var object = new Person("Sudheer");
This is similar to function constructor but it uses prototype for their properties and methods,
function Person(){}
Person.prototype.name = "Sudheer"; var
object = new Person();
This is equivalent to an instance created with an object create method with a function
prototype and then call that function with an instance and parameters as arguments.
func(x, y, z);
(OR)
// If the result is a non-null object then use it otherwise just use the new instance
console.log(result && typeof result === 'object' ? result : newInstance);
class Person {
constructor(name) {
this.name = name;
} } var object = new
Person("Sudheer");
A Singleton is an object which can only be instantiated one time. Repeated calls to its
constructor return the same instance and this way one can ensure that they don't
accidentally create multiple instances.
https://md2pdf.netlify.app 20/167
26/4/2021 md2pdf - Markdown to PDF
var object = new function(){
this.name = "Sudheer";
}
Screenshot
Call: The call() method invokes a function with a given this value and arguments provided one
by one
invite.call(employee1, 'Hello', 'How are you?'); // Hello John Rodson, How are you?
invite.call(employee2, 'Hello', 'How are you?'); // Hello Jimmy Baily, How are you?
Apply: Invokes the function with a given this value and allows you to pass in arguments as an
array
bind: returns a new function, allowing you to pass any number of arguments
https://md2pdf.netlify.app 21/167
26/4/2021 md2pdf - Markdown to PDF
var employee1 = {firstName: 'John', lastName: 'Rodson'}; var
employee2 = {firstName: 'Jimmy', lastName: 'Baily'};
Call and apply are pretty interchangeable. Both execute the current function immediately. You
need to decide whether it’s easier to send in an array or a comma separated list of arguments.
You can remember by treating Call is for comma (separated list) and Apply is for Array.
Whereas Bind creates a new function that will have this set to the first parameter passed to
bind().
basically just a text file with an extension of .json, and a MIME type of application/json
Parsing: Converting a string to a native object
JSON.parse(text)
Stringification: converting a native object to a string so it can be transmitted across the network
JSON.stringify(object)
https://md2pdf.netlify.app 22/167
26/4/2021 md2pdf - Markdown to PDF
Note: Slice method won't mutate the original array but it returns the subset as a new array.
Note: Splice method modifies the original array and returns the deleted array.
Returns the subset of original array Returns the deleted elements as array
i. The keys of an Object are Strings and Symbols, whereas they can be any value for a Map,
including functions, objects, and any primitive.
ii. The keys in Map are ordered while keys added to Object are not. Thus, when iterating over
it, a Map object returns keys in order of insertion.
https://md2pdf.netlify.app 23/167
26/4/2021 md2pdf - Markdown to PDF
iii. You can get the size of a Map easily with the size property, while the number of properties
in an Object must be determined manually.
iv. A Map is an iterable and can thus be directly iterated, whereas iterating over an Object
requires obtaining its keys in some fashion and iterating over them.
v. An Object has a prototype, so there are default keys in the map that could collide with your
keys if you're not careful. As of ES5 this can be bypassed by using map = Object.create(null),
but this is seldom done. vi. A Map may perform better in scenarios involving frequent
addition and removal of key pairs.
i. Two strings are strictly equal when they have the same sequence of characters, same length,
and same characters in corresponding positions.
ii. Two numbers are strictly equal when they are numerically equal. i.e, Having the same
number value. There are two special cases in this,
a. NaN is not equal to anything, including NaN.
b. Positive and negative zeros are equal to one another. iii. Two Boolean
operands are strictly equal if both are true or both are false. iv. Two objects are
strictly equal if they refer to the same Object.
v. Null and Undefined types are not equal with ===, but equal with ==. i.e, null===undefined
--> false but null==undefined --> true
0 == false // true
0 === false // false 1 ==
"1" // true 1 === "1"
// false null == undefined
// true null === undefined
// false '0' == false //
true
'0' === false // false
[]==[] or []===[] //false, refer different objects in memory
{}=={} or {}==={} //false, refer different objects in memory
For example, in such a language, a function can be passed as an argument to other functions,
can be returned by another function and can be assigned as a value to a variable. For example, in
the below example, handler functions assigned to a listener
const unaryFunction = a => console.log (a + 10); // Add 10 to the given argument and displ
https://md2pdf.netlify.app 25/167
26/4/2021 md2pdf - Markdown to PDF
mathematician Haskell Curry. By applying currying, a n-ary function turns it into a unary
function.
Let's take an example of n-ary function and how it turns into a currying function,
Curried functions are great to improve code reusability and functional composition.
Let's take an example to see the difference between pure and impure functions,
//Impure
let numberArray = []; const impureAddNumber = number =>
numberArray.push(number);
//Pure
const pureAddNumber = number => argNumberArray =>
argNumberArray.concat([number]);
Remember that Pure functions are important as they simplify unit testing without any side effects
and no need for dependency injection. They also avoid tight coupling and make it harder to
break your application by not having any side effects. These principles are coming together with
Immutability concept of ES6 by giving preference to const over let usage.
https://md2pdf.netlify.app 26/167
26/4/2021 md2pdf - Markdown to PDF
The let statement declares a block scope local variable. Hence the variables defined with let
keyword are limited in scope to the block, statement, or expression on which it is used. Whereas
variables declared with the var keyword used to define a variable globally, or locally to an entire
function regardless of block scope.
function userDetails(username) {
if(username) {
console.log(salary); // undefined due to hoisting
console.log(age); // ReferenceError: Cannot access 'age' before initialization
let age = 30; var salary = 10000;
}
console.log(salary); //10000 (accessible to due function scope)
console.log(age); //error: age is not defined(due to block scope)
}
userDetails('John');
To avoid this error, you can create a nested block inside a case clause and create a new block
scoped lexical environment.
function somemethod() {
console.log(counter1); // undefined
console.log(counter2); // ReferenceError
var counter1 = 1; let counter2 = 2;
}
(function ()
{
// logic here
}
)
();
https://md2pdf.netlify.app 28/167
26/4/2021 md2pdf - Markdown to PDF
The primary reason to use an IIFE is to obtain data privacy because any variables declared within
the IIFE cannot be accessed by the outside world. i.e, If you try to access variables with IIFE then it
throws an error as below,
(function () {
var message = "IIFE";
console.log(message);
}
) ();
console.log(message); //Error: message is not defined
i. Maintainability
const memoizAddition = () => { let cache = {}; return (value) => { if (value in cache)
{ console.log('Fetching from cache'); return cache[value]; // Here, cache.value
cannot be used as property name starts with t
} else {
console.log('Calculating result');
let result = value + 20;
cache[value] = result; return
result;
}
}
}
// returned function from memoizAddition const
addition = memoizAddition();
console.log(addition(20)); //output: 40 calculated console.log(addition(20));
//output: 40 cached
https://md2pdf.netlify.app 29/167
26/4/2021 md2pdf - Markdown to PDF
Hoisting is a JavaScript mechanism where variables and function declarations are moved to the
top of their scope before code execution. Remember that JavaScript only hoists declarations, not
initialisation. Let's take a simple example of variable hoisting,
function Bike(model,color) {
this.model = model;
this.color = color; }
Bike.prototype.getDetails = function() {
return this.model + ' bike has' + this.color + ' color'; };
class Bike{
constructor(color, model) {
this.color= color; this.model=
model;
}
getDetails() {
return this.model + ' bike has' + this.color + ' color';
}
}
https://md2pdf.netlify.app 30/167
26/4/2021 md2pdf - Markdown to PDF
function Welcome(name){
var greetingInfo = function(message){
console.log(message+' '+name);
}
return greetingInfo;
}
var myFunction = Welcome('John');
myFunction('Welcome '); //Output: Welcome John myFunction('Hello
Mr.'); //output: Hello Mr.John
As per the above code, the inner function(i.e, greetingInfo) has access to the variables in the
outer function scope(i.e, Welcome) even after the outer function has returned.
i. Maintainability
ii. Reusability
iii. Namespacing
https://md2pdf.netlify.app 31/167
26/4/2021 md2pdf - Markdown to PDF
i. Local storage: It stores data for current origin with no expiration date.
ii. Session storage: It stores data for one session and the data is lost when the browser tab is
closed.
document.cookie = "username=John";
Screenshot
https://md2pdf.netlify.app 32/167
26/4/2021 md2pdf - Markdown to PDF
i. When a user visits a web page, the user profile can be stored in a cookie.
ii. Next time the user visits the page, the cookie remembers the user profile.
i. By default, the cookie is deleted when the browser is closed but you can change this
behavior by setting expiry date (in UTC time).
document.cookie = "username=John; expires=Sat, 8 Jun 2019 12:00:00 UTC";
i. By default, the cookie belongs to a current page. But you can tell the browser what path the
cookie belongs to using a path parameter.
document.cookie = "username=John; path=/services";
cookie value in this case. For example, you can delete a username cookie in the current page as
Note: You should define the cookie path option to ensure that you delete the right cookie. Some
browsers doesn't allow to delete a cookie unless you specify a path parameter.
41. What are the differences between cookie, local storage and session
storage
Below are some of the differences between cookie, local storage and session storage,
Local Session
Feature Cookie
storage storage
https://md2pdf.netlify.app 33/167
26/4/2021 md2pdf - Markdown to PDF
Not Not
SSL support Supported
supported supported
localStorage.setItem('logo', document.getElementById('logo').value);
localStorage.getItem('logo');
window.onstorage = functionRef;
https://md2pdf.netlify.app 34/167
26/4/2021 md2pdf - Markdown to PDF
Let's take the example usage of onstorage event handler which logs the storage key and it's
values
window.onstorage = function(e) {
console.log('The ' + e.key +
' key has been changed from ' + e.oldValue +
' to ' + e.newValue + '.');
};
i. Create a Web Worker File: You need to write a script to increment the count value. Let's
name it as counter.js
let i = 0;
function timedCount() {
i = i + 1;
postMessage(i);
setTimeout("timedCount()",500);
} timedCount();
https://md2pdf.netlify.app 35/167
26/4/2021 md2pdf - Markdown to PDF
Here postMessage() method is used to post a message back to the HTML page
i. Create a Web Worker Object: You can create a web worker object by checking for browser
support. Let's name this file as web_worker_example.js
if (typeof(w) == "undefined") {
w = new Worker("counter.js");
}
w.onmessage = function(event){
document.getElementById("message").innerHTML = event.data;
};
i. Terminate a Web Worker: Web workers will continue to listen for messages (even after the
external script is finished) until it is terminated. You can use the terminate() method to
terminate listening to the messages.
w.terminate();
i. Reuse the Web Worker: If you set the worker variable to undefined you can reuse the code
w = undefined;
i. Window object
ii. Document object
iii. Parent object
console.log(value));
Screenshot
function callbackFunction(name) {
console.log('Hello ' + name);
}
function outerFunction(callback) {
let name = prompt('Please enter your name.');
callback(name);
} outerFunction(callbackFunction);
https://md2pdf.netlify.app 37/167
26/4/2021 md2pdf - Markdown to PDF
The callbacks are needed because javascript is an event driven language. That means instead of
waiting for a response javascript will keep executing while listening for other events. Let's take an
example with the first function invoking an API call(simulated by setTimeout) and the next
function which logs the message.
function firstFunction(){
// Simulate a code delay
setTimeout( function(){
console.log('First function called');
}, 1000 );
}
function secondFunction(){
console.log('Second function called');
}
firstFunction(); secondFunction();
Output
// Second function called
// First function called
As observed from the output, javascript didn't wait for the response of the first function and the
remaining code block got executed. So callbacks are used in a way to make sure that certain
code doesn’t execute until the other code finishes execution.
async1(function(){
async2(function(){
async3(function(){
async4(function(){
....
});
});
});
});
The EventSource object is used to receive server-sent event notifications. For example, you can
receive messages from server as below,
60. What are the events available for server sent events
Below are the list of events available for server sent events
Event Description
loadScript('/script1.js', function(script) {
loadScript('/script3.js', function(script) {
})
});
}).then(function(result) {
console.log(result); // 1
return result * 2;
}).then(function(result) {
console.log(result); // 2
return result * 3;
}).then(function(result) {
console.log(result); // 6
return result * 4;
});
In the above handlers, the result is passed to the chain of .then() handlers with the below work
flow,
https://md2pdf.netlify.app 40/167
26/4/2021 md2pdf - Markdown to PDF
Note: Remember that the order of the promises(output the result) is maintained as per input
order.
Promise.race([promise1, promise2]).then(function(value) {
console.log(value); // "two" // Both promises will resolve, but promise2 is faster });
"use strict";
https://md2pdf.netlify.app 41/167
26/4/2021 md2pdf - Markdown to PDF
x = 3.14; // This will cause an error because x is not declared
If you don't use this expression then it returns the original value.
// {name: "John"}
https://md2pdf.netlify.app 42/167
26/4/2021 md2pdf - Markdown to PDF
user = undefined
Null Undefined
Converted to zero (0) while performing Converted to NaN while performing primitive
primitive operations operations
The eval() function evaluates JavaScript code represented as a string. The string can be a
console.log(eval('1 + 2')); // 3
It is the root level element in any web It is the direct child of the window object. This is
page also known as Document Object Model(DOM)
function goBack() {
window.history.back()
}
function goForward() {
window.history.forward()
}
Let's take an input element to detect the CapsLock on/off behavior with an example,
<p id="feedback"></p>
<script>
https://md2pdf.netlify.app 44/167
26/4/2021 md2pdf - Markdown to PDF
function enterInput(e) { var flag = e.getModifierState("CapsLock");
if(flag) { document.getElementById("feedback").innerHTML = "CapsLock
activated";
} else {
document.getElementById("feedback").innerHTML = "CapsLock not activated";
}
}
</script>
80. What are the differences between undeclared and undefined variables
Below are the major differences between undeclared and undefined variables,
undeclared undefined
undeclared undefined
These variables do not exist in a program and These variables declared in the program
are not declared but have not assigned any value
If you try to read the value of an undeclared If you try to read the value of an undefined
variable, then a runtime error is encountered variable, an undefined value is returned.
https://md2pdf.netlify.app 45/167
26/4/2021 md2pdf - Markdown to PDF
The NaN property is a global property that represents "Not-a-Number" value. i.e, It indicates that
a value is not a legal number. It is very rare to use NaN in a program but it can be used as return
value for few cases
Math.sqrt(-1) parseInt("Hello")
function submit() {
https://md2pdf.netlify.app 46/167
26/4/2021 md2pdf - Markdown to PDF
document.form[0].submit();
}
console.log(navigator.platform);
91. What is the difference between native, host and user objects
Native objects are objects that are part of the JavaScript language defined by the ECMAScript
specification. For example, String, Math, RegExp, Object, Function etc core objects defined in the
ECMAScript spec. Host objects are objects provided by the browser or runtime environment
(Node). For example, window, XmlHttpRequest, DOM nodes etc are considered as host objects.
User objects are objects defined in the javascript code. For example, User objects created for
profile information.
92. What are the tools or techniques used for debugging JavaScript code
You can use below tools or techniques for debugging javascript
i. Chrome Devtools
ii. debugger statement
iii. Good old console.log statement
93. What are the pros and cons of promises over callbacks
Below are the list of pros and cons of promises over callbacks,
Pros:
https://md2pdf.netlify.app 47/167
26/4/2021 md2pdf - Markdown to PDF
Cons:
And after you change the value of the text field to "Good evening", it becomes like
https://md2pdf.netlify.app 48/167
26/4/2021 md2pdf - Markdown to PDF
<a href="JavaScript:void(0);" onclick="alert('Well done!')">Click Me!</a>
<!doctype html>
<html>
<head>
<script>
function greeting() {
alert('Hello! Good morning');
}
</script>
</head>
<body>
<button type="button" onclick="greeting()">Click me</button>
</body>
</html>
https://md2pdf.netlify.app 49/167
26/4/2021 md2pdf - Markdown to PDF
document.getElementById("link").addEventListener("click", function(event){
event.preventDefault();
});
Note: Remember that not all events are cancelable.
<script>
function firstFunc(event) {
alert("DIV 1");
event.stopPropagation();
}
function secondFunc() {
alert("DIV 2");
}
</script>
Screenshot
For example, if you wanted to detect field changes in inside a specific form, you can use event
delegation technique,
https://md2pdf.netlify.app 51/167
26/4/2021 md2pdf - Markdown to PDF
}, false);
https://md2pdf.netlify.app 52/167
26/4/2021 md2pdf - Markdown to PDF
When exchanging data between a browser and a server, the data can only be text. Since JSON is
text only, it can easily be sent to and from a server, and used as a data format by any
programming language.
For example, the below setTimeout method is used to display the message after 3 seconds. This
timeout can be cleared by the clearTimeout() method.
function stop() {
clearTimeout(msg);
}
</script>
For example, the below setInterval method is used to display the message for every 3 seconds.
This interval can be cleared by the clearInterval() method.
https://md2pdf.netlify.app 53/167
26/4/2021 md2pdf - Markdown to PDF
}
function stop() {
clearInterval(msg);
}
</script>
function redirect() {
window.location.href = 'newPage.html'; }
https://md2pdf.netlify.app 54/167
26/4/2021 md2pdf - Markdown to PDF
The above regular expression accepts unicode characters.
same expression for updating the URL too. You can also use document.URL for read-only
i. Using in operator: You can use the in operator whether a key exists in an object or not
"key" in obj
and If you want to check if a key doesn't exist, remember to use parenthesis,
!("key" in obj)
i. Using hasOwnProperty method: You can use hasOwnProperty to particularly test for
https://md2pdf.netlify.app 55/167
26/4/2021 md2pdf - Markdown to PDF
obj.hasOwnProperty("key") // true
i. Using undefined comparison: If you access a non-existing property from an object, the
result is undefined. Let’s compare the properties against undefined to determine the
existence of the property.
const user = {
name: 'John'
};
var object = {
"k1": "value1",
"k2": "value2",
"k3": "value3"
};
i. Using Object entries(ECMA 7+): You can use object entries length along with constructor
type.
Object.entries(obj).length === 0 && obj.constructor === Object // Since date object length
i. Using Object keys(ECMA 5+): You can use object keys length along with constructor type.
Object.keys(obj).length === 0 && obj.constructor === Object // Since date object length is
i. Using for-in with hasOwnProperty(Pre-ECMA 5): You can use a for-in loop along with
hasOwnProperty.
https://md2pdf.netlify.app 56/167
26/4/2021 md2pdf - Markdown to PDF
function isEmpty(obj) { for(var
prop in obj) {
if(obj.hasOwnProperty(prop)) {
return false;
}
}
Note: You can't apply array methods on arguments object. But you can convert into a regular
####Cons
i. Too verbose
https://md2pdf.netlify.app 57/167
26/4/2021 md2pdf - Markdown to PDF
ii. Imperative
iii. You might face one-by-off errors
If your browser(<IE9) doesn't support this method then you can use below polyfill.
if (!String.prototype.trim) {
(function() {
// Make sure we trim BOM and NBSP
https://md2pdf.netlify.app 58/167
26/4/2021 md2pdf - Markdown to PDF
var rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;
String.prototype.trim = function() { return
this.replace(rtrim, '');
};
})();
}
var object = {
key1: value1,
key2: value2
};
i. Using dot notation: This solution is useful when you know the name of the property
object.key3 = "value3";
i. Using square bracket notation: This solution is useful when the name of the property is
dynamically determined.
obj["key3"] = "value3";
At first, the value decremented by one and then tested to see if it is equal to zero or not for
determining the truthy/falsy value.
var a = b || c;
https://md2pdf.netlify.app 59/167
26/4/2021 md2pdf - Markdown to PDF
As per the above expression, variable 'a 'will get the value of 'c' only if 'b' is falsy (if is null, false,
undefined, 0, empty string, or NaN), otherwise 'a' will get the value of 'b'.
But if you have a space after the '' character, the code will look exactly the same, but it will raise a
SyntaxError.
fn = function(x) {
//Function code goes here
} fn.name = "John";
fn.profile = function(y) {
https://md2pdf.netlify.app 60/167
26/4/2021 md2pdf - Markdown to PDF
The continue statement is used to "jump over" one iteration in the loop. i.e, It breaks one
iteration (in the loop), if a specified condition occurs, and continues with the next iteration in the
loop.
var i, j;
loop1:
for (i = 0; i < 3; i++) {
loop2:
for (j = 0; j < 3; j++) {
if (i === j) {
continue loop1;
} console.log('i = ' + i + ', j =
' + j);
}
}
// Output is:
// "i = 1, j = 0"
// "i = 2, j = 0"
// "i = 2, j = 1"
https://md2pdf.netlify.app 61/167
26/4/2021 md2pdf - Markdown to PDF
https://md2pdf.netlify.app 62/167
26/4/2021 md2pdf - Markdown to PDF
"users":[
{"firstName":"John", "lastName":"Abrahm"},
{"firstName":"Anna", "lastName":"Smith"},
{"firstName":"Shane", "lastName":"Warn"} ]
150. Can you write a random integers function to print integers with in a
range
Yes, you can create a proper random function to return a random number between min and max
(both included)
/pattern/modifiers;
For example, the regular expression or search pattern with case-insensitive username would be,
/John/i
The replace() method is used to return a modified string where the pattern is replaced.
https://md2pdf.netlify.app 64/167
26/4/2021 md2pdf - Markdown to PDF
i. Brackets: These are used to find a range of characters. For example, below are some use
cases,
a. [abc]: Used to find any of the characters between the brackets(a,b,c)
b. [0-9]: Used to find any of the digits between the brackets
c. (a|b): Used to find any of the alternatives separated with |
ii. Metacharacters: These are characters with a special meaning For example, below are some
use cases,
a. \d: Used to find a digit
b. \s: Used to find a whitespace character
c. \b: Used to find a match at the beginning or ending of a word
iii. Quantifiers: These are useful to define quantities For example, below are some use cases,
a. n+: Used to find matches for any string that contains at least one n
b. n*: Used to find matches for any string that contains zero or more occurrences of n
c. n?: Used to find matches for any string that contains zero or one occurrences of n
https://md2pdf.netlify.app 65/167
26/4/2021 md2pdf - Markdown to PDF
console.log(pattern.exec("How are you?")); //["you", index: 8, input: "How are you?", grou
i. Using style property: You can modify inline style using style property
document.getElementById("title").style.fontSize = "30px";
i. Using ClassName property: It is easy to modify element class using className property
document.getElementById("title").className = "custom-title";
function getProfile() { //
code goes here debugger;
// code goes here
}
https://md2pdf.netlify.app 66/167
26/4/2021 md2pdf - Markdown to PDF
No, you cannot use the reserved words as variables, labels, object or function names. Let's see
one simple example,
window.mobilecheck = function() {
var mobileCheck = false;
(function(a){if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|e
return mobileCheck;
};
function detectmob() {
if( navigator.userAgent.match(/Android/i) ||
navigator.userAgent.match(/webOS/i)
|| navigator.userAgent.match(/iPhone/i)
|| navigator.userAgent.match(/iPad/i)
|| navigator.userAgent.match(/iPod/i)
|| navigator.userAgent.match(/BlackBerry/i)
|| navigator.userAgent.match(/Windows Phone/i)
){
return true;
}
else {
return false;
}
}
168. How do you get the image width and height using JS
You can programmatically get the image and check the dimensions(width and height) using
Javascript.
function httpGet(theUrl)
{ var xmlHttpReq = new
XMLHttpRequest();
xmlHttpReq.open( "GET", theUrl, false ); // false for synchronous request
xmlHttpReq.send( null ); return xmlHttpReq.responseText; }
https://md2pdf.netlify.app 68/167
26/4/2021 md2pdf - Markdown to PDF
var height = window.innerHeight
|| document.documentElement.clientHeight
|| document.body.clientHeight;
function traceValue(someParam) {
return condition1 ? value1
: condition2 ? value2 :
condition3 ? value3
: value4;
}
function traceValue(someParam) { if
(condition1) { return value1; } else if
(condition2) { return value2; } else if
(condition3) { return value3; } else {
return value4; }
}
175. What are the ways to execute javascript after page load
You can execute javascript after page load in many different ways,
i. window.onload:
window.onload = function ...
i. document.onload:
document.onload = function ...
i. body onload:
https://md2pdf.netlify.app 69/167
26/4/2021 md2pdf - Markdown to PDF
<body onload="script();">
var fn = function () {
//...
}(function () {
//...
})();
In this case, we are passing the second function as an argument to the first function and then
trying to call the result of the first function call as a function. Hence, the second function will fail
with a "... is not a function" error at runtime.
https://md2pdf.netlify.app 70/167
26/4/2021 md2pdf - Markdown to PDF
const obj = {
prop: 100
};
Object.freeze(obj);
obj.prop = 200; // Throws an error in strict mode console.log(obj.prop);
//100
https://md2pdf.netlify.app 71/167
26/4/2021 md2pdf - Markdown to PDF
<script type="javascript">
// JS related code goes here
</script>
<noscript>
<a href="next_page.html?noJS=true">JavaScript is disabled in the page. Please click Ne
</noscript>
For example, let's take a sum example to calculate on dynamic number of parameters,
function total(…args){
let sum = 0; for(let i
of args){ sum+=i; }
return sum;
}
console.log(fun(1,2)); //3 console.log(fun(1,2,3));
//6 console.log(fun(1,2,3,4)); //13
console.log(fun(1,2,3,4,5)); //15
https://md2pdf.netlify.app 72/167
26/4/2021 md2pdf - Markdown to PDF
186. What happens if you do not use rest parameter as a last argument
The rest parameter should be the last argument, as its job is to collect all the remaining
arguments into an array. For example, if you define a function like below it doesn’t make any
sense and will throw an error.
function someFunc(a,…b,c){
//You code goes here return;
}
function calculateSum(x, y, z) {
return x + y + z;
} const numbers = [1, 2, 3];
console.log(calculateSum(...numbers)); // 6
i. If it is not extensible.
ii. If all of its properties are non-configurable.
iii. If all its data properties are non-writable. The usage is going to be as follows,
https://md2pdf.netlify.app 73/167
26/4/2021 md2pdf - Markdown to PDF
const object = {
property: 'Welcome JS world'
};
Object.freeze(object);
console.log(Object.isFrozen(object));
190. How do you determine two values same or not using object
The Object.is() method determines whether two values are the same value. For example, the
usage with different types of values would be,
i. both undefined
ii. both null
iii. both true or both false
iv. both strings of the same length with the same characters in the same order
v. both the same object (means both object have same reference)
vi. both numbers and both +0 both -0 both NaN both non-zero and both not NaN and
both have the same value.
i. It is used for comparison of two strings. ii. It is used for comparison of two numbers.
iii. It is used for comparing the polarity of two numbers.
iv. It is used for comparison of two objects.
Object.assign(target, ...sources)
Let's take example with one source and one target object,
console.log(returnedTarget); // { a: 1, b: 3, c: 4 }
As observed in the above code, there is a common property( b ) from source to target so it's
value has been overwritten.
https://md2pdf.netlify.app 75/167
26/4/2021 md2pdf - Markdown to PDF
const object = { property:
'Welcome JS world'
};
Object.seal(object);
object.property = 'Welcome to object world';
console.log(Object.isSealed(object)); // true delete
object.property; // You cannot delete when sealed
console.log(object.property); //Welcome to object world
i. It is used for sealing objects and arrays. ii. It is used to make an object
immutable.
197. What are the differences between freeze and seal methods
If an object is frozen using the Object.freeze() method then its properties become immutable
and no changes can be made in them whereas if an object is sealed using the Object.seal()
method then the changes can be made in the existing properties of the object.
i. If it is not extensible.
ii. If all of its properties are non-configurable. iii. If it is not removable (but
not necessarily non-writable). Let's see it in the action
const object = {
property: 'Hello, Good morning' };
const object = {
a: 'Good morning',
b: 100 };
https://md2pdf.netlify.app 76/167
26/4/2021 md2pdf - Markdown to PDF
for (let [key, value] of Object.entries(object)) {
console.log(`${key}: ${value}`); // a: 'Good morning'
// b: 100 }
const object = {
a: 'Good morning',
b: 100 };
201. How can you get the list of keys of any object
You can use the Object.keys() method which is used to return an array of a given object's own
property names, in the same order as we get with a normal loop. For example, you can get the
keys of a user object,
const user = {
name: 'John',
gender: 'male',
age: 40 };
console.log(Object.k
eys(user));
//['name', 'gender',
'age']
new WeakSet([iterable]);
i. Sets can store any value Whereas WeakSets can store only collections of objects
ii. WeakSet does not have size property unlike Set
iii. WeakSet does not have methods such as clear, keys, values, entries, forEach. iv. WeakSet is
not iterable.
i. add(value): A new object is appended with the given value to the weakset
ii. delete(value): Deletes the value from the WeakSet collection.
iii. has(value): It returns true if the value is present in the WeakSet Collection, otherwise it
returns false.
iv. length(): It returns the length of weakSetObject Let's see the functionality of all the above
methods in an example,
var weakSetObject = new WeakSet();
var firstObject = {}; var
secondObject = {};
// add(value)
weakSetObject.add(firstObject); weakSetObject.add(secondObject);
console.log(weakSetObject.has(firstObject)); //true
console.log(weakSetObject.length()); //2 weakSetObject.delete(secondObject);
https://md2pdf.netlify.app 78/167
26/4/2021 md2pdf - Markdown to PDF
new WeakMap([iterable])
i. Maps can store any key type Whereas WeakMaps can store only collections of key objects
ii. WeakMap does not have size property unlike Map
iii. WeakMap does not have methods such as clear, keys, values, entries, forEach. iv. WeakMap
is not iterable.
i. set(key, value): Sets the value for the key in the WeakMap object. Returns the WeakMap
object.
ii. delete(key): Removes any value associated to the key.
iii. has(key): Returns a Boolean asserting whether a value has been associated to the key in the
WeakMap object or not.
iv. get(key): Returns the value associated to the key, or undefined if there is none. Let's see the
functionality of all the above methods in an example,
var weakMapObject = new WeakMap(); var firstObject =
{}; var secondObject = {}; // set(key, value)
weakMapObject.set(firstObject, 'John');
weakMapObject.set(secondObject, 100);
console.log(weakMapObject.has(firstObject)); //true
console.log(weakMapObject.get(firstObject)); // John
weakMapObject.delete(secondObject);
https://md2pdf.netlify.app 79/167
26/4/2021 md2pdf - Markdown to PDF
Note: In most browsers, it will block while the print dialog is open.
The uneval function returns the source of a given object; whereas the eval function does the
opposite, by evaluating that source code in a different memory area. Let's see an example to
clarify the difference,
var msg = uneval(function greeting() { return 'Hello, Good morning'; }); var
greeting = eval(msg);
greeting(); // returns "Hello, Good morning"
function (optionalParameters) {
//do something
}
215. What is the precedence order between local and global variables
A local variable takes precedence over a global variable with the same name. Let's see this
behavior in an example.
Object.defineProperty(newObject, 'newProperty', {
value: 100, writable: false
}); console.log(newObject.newProperty); // 100 newObject.newProperty = 200; // It throws
Yes, You can use the Object.defineProperty() method to add Getters and Setters. For example,
the below counter object uses increment, decrement, add and subtract properties,
// Define getters
Object.defineProperty(obj, "increment", {
get : function () {this.counter++;}
});
Object.defineProperty(obj, "decrement", {
get : function () {this.counter--;} });
// Define setters
Object.defineProperty(obj, "add", {
set : function (value) {this.counter += value;}
});
Object.defineProperty(obj, "subtract", {
set : function (value) {this.counter -= value;}
});
switch (expression)
{ case value1:
statement1;
break; case
value2:
statement2;
break;
. .
case valueN:
statementN;
break; default:
statementDefault;
}
The above multi-way branch statement provides an easy way to dispatch execution to different
parts of code based on the value of the expression.
222. What are the conventions to be followed for the usage of switch case
Below are the list of conventions should be taken care,
https://md2pdf.netlify.app 83/167
26/4/2021 md2pdf - Markdown to PDF
i. string
ii. number
iii. boolean iv. null
v. undefined
vi. bigint
vii. symbol
objectName.property
objectName["property"]
objectName[expression]
iii. Do not check the number of arguments received. i.e, The below function follows the above
rules,
function functionName(parameter1, parameter2, parameter3) {
console.log(parameter1); // 1
}
functionName(1);
try {
greeting("Welcome");
} catch(err) { console.log(err.name + "<br>" +
err.message); }
228. What are the different error names from error object
There are 6 different types of error names returned from error object,
https://md2pdf.netlify.app 85/167
26/4/2021 md2pdf - Markdown to PDF
233. How do you perform language specific date and time formatting
You can use the Intl.DateTimeFormat object which is a constructor for objects that enable
language-sensitive date and time formatting. Let's see this behavior with an example,
https://md2pdf.netlify.app 86/167
26/4/2021 md2pdf - Markdown to PDF
Iterable: It is an object which can be iterated over via a method whose key is Symbol.iterator.
Iterator: It is an object returned by invoking [Symbol.iterator]() on an iterable. This iterator
object wraps each iterated element in an object and returns it via next() method one by one.
IteratorResult: It is an object returned by next() method. The object contains two properties;
the value property contains an iterated element and the done property determines whether the
element is the last element or not.
i. Whenever you call a function for its execution, you are pushing it to the stack.
ii. Whenever the execution is completed, the function is popped out of the stack.
function hungry() {
eatFruits();
}
function eatFruits() {
return "I'm eating fruits"; }
https://md2pdf.netlify.app 87/167
26/4/2021 md2pdf - Markdown to PDF
i. Add the hungry() function to the call stack list and execute the code. ii. Add the
eatFruits() function to the call stack list and execute the code. iii. Delete the eatFruits()
function from our call stack list. iv. Delete the hungry() function from the call stack list
since there are no items anymore.
Screenshot
function admin(isAdmin) {
return function(target) {
target.isAdmin = isAdmin;
}
}
@admin(true) class
User() {
}
console.log(User.isAdmin); //true
@admin(false)
class User() {
} console.log(User.isAdmin);
//false
i. Collator: These are the objects that enable language-sensitive string comparison.
ii. DateTimeFormat: These are the objects that enable language-sensitive date and time
formatting.
iii. ListFormat: These are the objects that enable language-sensitive list formatting. iv.
NumberFormat: Objects that enable language-sensitive number formatting.
v. PluralRules: Objects that enable plural-sensitive formatting and language-specific rules
for plurals. vi. RelativeTimeFormat: Objects that enable language-sensitive relative time
formatting.
https://md2pdf.netlify.app 88/167
26/4/2021 md2pdf - Markdown to PDF
The unary(+) operator is used to convert a variable to a number.If the variable cannot be
converted, it will still become a number but with the value NaN. Let's see this behavior in an
action.
https://md2pdf.netlify.app 89/167
26/4/2021 md2pdf - Markdown to PDF
var marks = [50, 20, 70, 60, 45, 30];
function findMin(arr) { return
Math.min.apply(null, arr);
}
function findMax(arr) { return
Math.max.apply(null, arr);
}
console.log(findMin(marks)); console.log(findMax(marks));
246. How do you find min and max values without Math functions
You can write functions which loop through an array comparing each value with the lowest value
or highest value to find the min and max values. Let's create those functions to find min and max
values,
function findMax(arr) {
var length = arr.length
var max = -Infinity;
while (len--) { if
(arr[length] > max) {
max = arr[length];
}
}
return max;
}
console.log(findMin(marks)); console.log(findMax(marks));
// Initialize an array a
for(int i=0; i < a.length; a[i++] = 0) ;
https://md2pdf.netlify.app 90/167
26/4/2021 md2pdf - Markdown to PDF
var x = 1; x = (x++,
x);
console.log(x); // 2
You can also use the comma operator in a return statement where it processes before returning.
function myFunction() {
var a = 1;
return (a += 10, a); // 11
}
https://md2pdf.netlify.app 91/167
26/4/2021 md2pdf - Markdown to PDF
console.log(greeting(user));
i. TypeScript is able to find compile time errors at the development time only and it makes
sures less runtime errors. Whereas javascript is an interpreted language.
ii. TypeScript is strongly-typed or supports static typing which allows for checking type
correctness at compile time. This is not available in javascript.
iii. TypeScript compiler can compile the .ts files into ES3,ES4 and ES5 unlike ES6 features of
javascript which may not be supported in some browsers.
https://md2pdf.netlify.app 92/167
26/4/2021 md2pdf - Markdown to PDF
var initObject = {a: 'John', b: 50, c: {}}; console.log(initObject.a);
// John
class Employee {
constructor() {
this.name = "John";
} } var employeeObject = new
Employee();
console.log(employeeObject.name); //
John
256. What happens if you write constructor more than once in a class
The "constructor" in a class is a special method and it should be defined only once in a class. i.e,
If you write a constructor method more than once in a class it will throw a SyntaxError error.
class Employee {
constructor() {
this.name = "John";
} constructor() { // Uncaught SyntaxError: A class may only have one
constructor this.age = 30;
} } var employeeObject = new
Employee();
console.log(employeeObject.name);
https://md2pdf.netlify.app 93/167
26/4/2021 md2pdf - Markdown to PDF
get area() { return this.width
* this.height;
}
set area(value) {
this.area = value;
}
}
// ES5
Object.getPrototypeOf('James'); // TypeError: "James" is not an object //
ES2015
Object.getPrototypeOf('James'); // String.prototype
https://md2pdf.netlify.app 94/167
26/4/2021 md2pdf - Markdown to PDF
const newObject = {};
console.log(Object.isExtensible(newObject)); //true
Note: By default, all the objects are extendable. i.e, The new properties can be added or
modified.
i. Object.preventExtensions
ii. Object.seal
iii. Object.freeze var newObject = {};
https://md2pdf.netlify.app 95/167
26/4/2021 md2pdf - Markdown to PDF
Object.defineProperties(newObject, {
newProperty1: { value: 'John',
writable: true
},
newProperty2: {}
});
function greeting() {
console.log('Hello, welcome to JS world'); }
eval(function(p,a,c,k,e,d){e=function(c){return c};if(!''.replace(/^/,String)){while(c--){
i. The Code size will be reduced. So data transfers between server and client will be fast.
ii. It hides the business logic from outside world and protects the code from others
iii. Reverse engineering is highly difficult iv. The download time will be reduced
https://md2pdf.netlify.app 96/167
26/4/2021 md2pdf - Markdown to PDF
Normally it is recommended to use minification for heavy traffic and intensive requirements of
resources. It reduces file sizes with below benefits,
Target
It will be converted to a
data Converted into an unreadable format
complex form
format
function validateForm() {
https://md2pdf.netlify.app 97/167
26/4/2021 md2pdf - Markdown to PDF
var x = document.forms["myForm"]["uname"].value;
if (x == "") { alert("The username shouldn't be
empty"); return false;
}
}
<form method="post">
<input type="text" name="uname" required>
<input type="submit" value="Submit">
</form>
Note: Automatic form validation does not work in Internet Explorer 9 or earlier.
274. What are the DOM methods available for constraint validation
The below DOM methods are available for constraint validation on an invalid input,
https://md2pdf.netlify.app 98/167
26/4/2021 md2pdf - Markdown to PDF
iv. rangeUnderflow: It returns true, if an element's value is less than its min attribute.
v. stepMismatch: It returns true, if an element's value is invalid according to step attribute.
vi. tooLong: It returns true, if an element's value exceeds its maxLength attribute.
vii. typeMismatch: It returns true, if an element's value is invalid according to type attribute.
viii. valueMissing: It returns true, if an element with a required attribute has no value. ix. valid: It
returns true, if an element's value is valid.
function myOverflowFunction() {
if (document.getElementById("age").validity.rangeOverflow) {
alert("The mentioned age is not allowed");
}
}
enum Color {
RED, GREEN, BLUE
}
https://md2pdf.netlify.app 99/167
26/4/2021 md2pdf - Markdown to PDF
const newObject = { a: 1, b: 2, c: 3 };
console.log(Object.getOwnPropertyNames(newObject)); ["a", "b", "c"]
https://md2pdf.netlify.app 100/167
26/4/2021 md2pdf - Markdown to PDF
class Square extends Rectangle {
constructor(length) {
super(length, length); this.name
= 'Square';
}
set area(value) {
this.area = value;
}
}
285. How do you check whether an array includes a particular value or not
The Array#includes() method is used to determine whether an array includes a particular value
among its entries by returning either true or false. Let's see an example to find an
element(numeric and string) within an array.
If you would like to compare arrays irrespective of order then you should sort them before,
https://md2pdf.netlify.app 101/167
26/4/2021 md2pdf - Markdown to PDF
const arrayFirst = [2,3,1,4,5]; const
arraySecond = [1,2,3,4,5];
console.log(arrayFirst.length === arraySecond.length && arrayFirst.sort().every((value, in
function convertToThousandFormat(x){
return x.toLocaleString(); // 12,345.679
} console.log(convertToThousandFormat(12345.6789));
Object oriented
Paradigm Prototype based programming
programming
https://md2pdf.netlify.app 102/167
26/4/2021 md2pdf - Markdown to PDF
} function func1()
{
console.log("This is a second definition");
}
func1(); // This is a second definition
It always calls the second function definition. In this case, namespace will solve the name collision
problem.
i. Using Object Literal Notation: Let's wrap variables and functions inside an Object literal
which acts as a namespace. After that you can access them using object notation
var namespaceOne = {
function func1() {
console.log("This is a first definition");
} }
var namespaceTwo = {
function func1() {
console.log("This is a second definition");
}
} namespaceOne.func1(); // This is a first
definition namespaceTwo.func1(); // This is a second
definition
i. Using IIFE (Immediately invoked function expression): The outer pair of parentheses of
IIFE creates a local scope for all the code inside of it and makes the anonymous function a
function expression. Due to that, you can create the same function in two different function
expressions to act as a namespace.
(function() {
function fun1(){
console.log("This is a first definition");
} fun1();
}());
https://md2pdf.netlify.app 103/167
26/4/2021 md2pdf - Markdown to PDF
(function() { function fun1(){
console.log("This is a second definition");
} fun1();
}());
i. Using a block and a let/const declaration: In ECMAScript 6, you can simply use a block
and
a let declaration to restrict the scope of a variable to a block.
{ let myFunction= function
fun1(){
console.log("This is a first definition");
}
myFunction();
}
//myFunction(): ReferenceError: myFunction is not defined.
292. How do you invoke javascript code in an iframe from parent page
Initially iFrame needs to be accessed using either document.getElementBy or window.frames .
After that contentWindow property of iFrame gives the access for targetFunction
document.getElementById('targetFrame').contentWindow.targetFunction();
window.frames[0].frameElement.contentWindow.targetFunction(); // Accessing iframe this way
https://md2pdf.netlify.app 104/167
26/4/2021 md2pdf - Markdown to PDF
fileReference.setAttribute("rel", "stylesheet");
fileReference.setAttribute("type", "text/css");
fileReference.setAttribute("href", filename); } else if
(filetype == "js") { // External JavaScript file var
fileReference = document.createElement('script');
fileReference.setAttribute("type", "text/javascript");
fileReference.setAttribute("src", filename);
}
if (typeof fileReference != "undefined")
document.getElementsByTagName("head")[0].appendChild(fileReference) }
295. What are the different methods to find HTML elements in DOM
If you want to access any element in an HTML page, you need to start with accessing the
document object. Later you can use any of the below methods to find the HTML element,
Note: You can download it from jquery's official site or install it from CDNs, like google.
Note: This operator is often used to obtain the undefined primitive value, using "void(0)".
<body onload="myFunction()">
https://md2pdf.netlify.app 106/167
26/4/2021 md2pdf - Markdown to PDF
JavaScript's with statement was intended to provide a shorthand for writing recurring accesses to
objects. So it can help reduce file size by reducing the need to repeat a lengthy object reference
without performance penalty. Let's take an example where it is used to avoid redundancy when
accessing an object several times.
a.b.c.greeting = 'welcome';
a.b.c.age = 32;
with(a.b.c) { greeting
= "welcome"; age = 32;
}
But this with statement creates performance problems since one cannot predict whether an
argument will refer to a real variable or to a property inside the with argument.
Explanation: Due to the event queue/loop of javascript, the setTimeout callback function is called
after the loop has been executed. Since the variable i is declared with the var keyword it became
a global variable and the value was equal to 4 using iteration when the time setTimeout function
is invoked. Hence, the output of the first loop is 4 4 4 4 .
Whereas in the second loop, the variable i is declared as the let keyword it becomes a block
scoped variable and it holds a new value(0, 1 ,2 3) for each iteration. Hence, the output of the
first loop is 0 1 2 3 .
https://md2pdf.netlify.app 107/167
26/4/2021 md2pdf - Markdown to PDF
Explanation: The variable declaration with var keyword refers to a function scope and the
variable is treated as if it were declared at the top of the enclosing scope due to hoisting feature.
So all the multiple declarations contributing to the same hoisted variable without any error. Let's
take an example of re-declaring variables in the same scope for both var and let/const variables.
let name = 'John'; function myFunc() { let name = 'Nick'; let name = 'Abraham'; //
Uncaught SyntaxError: Identifier 'name' has already been decl alert(name);
}
myFunc(); alert(name);
https://md2pdf.netlify.app 108/167
26/4/2021 md2pdf - Markdown to PDF
No, the const variable doesn't make the value immutable. But it disallows subsequent
assignments(i.e, You can declare with assignment but can't assign another value later)
//ES6
var calculateArea = function(height = 50, width = 60) {
return width * height;
} console.log(calculateArea());
//300
var greeting = 'Welcome to JS World, Mr. ' + firstName + ' ' + lastName.`
Note: You can use multi-line strings and string interpolation features with template literals.
https://md2pdf.netlify.app 109/167
26/4/2021 md2pdf - Markdown to PDF
Whereas in ES6, You don't need to mention any newline sequence character,
You can write the above use case without nesting template features as well. However, the nesting
template feature is more compact and readable.
https://md2pdf.netlify.app 110/167
26/4/2021 md2pdf - Markdown to PDF
var user2 = 'Kane'; var
skill2 = 'JavaScript'; var
experience2 = 5;
var expertiseStr; if
(experienceExp > 10){
expertiseStr = 'expert developer'; }
else if(skillExp > 5 && skillExp <= 10) {
expertiseStr = 'senior developer';
} else { expertiseStr = 'junior
developer';
}
return ${str0}${userExp}${str1}${expertiseStr}${str2}${skillExp};
}
If you don't use raw strings, the newline character sequence will be processed by displaying the
output in multiple lines
Also, the raw property is available on the first argument to the tag function
function tag(strings) {
console.log(strings.raw[0]);
}
https://md2pdf.netlify.app 111/167
26/4/2021 md2pdf - Markdown to PDF
and you can get user properties of an object using destructuring assignment,
var x, y, z;
Objects destructuring:
console.log(x); // 10
console.log(y); // 4 console.log(z);
// 6
https://md2pdf.netlify.app 112/167
26/4/2021 md2pdf - Markdown to PDF
var x = 10, y = 20;
i. Compute the module specifier at runtime. For example, you can use it for
internationalization.
import(`messages_${getLocale()}.js`).then(···);
https://md2pdf.netlify.app 113/167
26/4/2021 md2pdf - Markdown to PDF
For example, you can create an array of 8-bit signed integers as below
i. Dynamic loading
ii. State isolation
iii. Global namespace isolation iv. Compilation hooks
v. Nested virtualization
i. Sorting:
var list = [ "ä", "a", "z" ]; // In German, "ä" sorts with "a" Whereas in Swedish, "ä" so
var l10nDE = new Intl.Collator("de"); var l10nSV = new Intl.Collator("sv");
https://md2pdf.netlify.app 114/167
26/4/2021 md2pdf - Markdown to PDF
console.log(list.sort(l10nDE.compare)) // [ "a", "ä", "z" ]
console.log(list.sort(l10nSV.compare)) // [ "a", "z", "ä" ]
[...'John Resig']
The output of the array is ['J', 'o', 'h', 'n', '', 'R', 'e', 's', 'i', 'g'] Explanation: The string is an iterable
type and the spread operator within an array maps every character of an iterable to one element.
Hence, each character of a string becomes an element within an Array.
326. What are the problems with postmessage target origin as wildcard
The second argument of postMessage method specifies which origin is allowed to receive the
message. If you use the wildcard “*” as an argument then any origin is allowed to receive the
message. In this case, there is no way for the sender window to know if the target window is at
the target origin when sending the message. If the target window has been navigated to another
origin, the other origin would receive the data. Hence, this may lead to XSS vulnerabilities.
targetWindow.postMessage(message, '*');
message on the receiver's end using the “message.origin” attribute. For examples, let's check the
sender's origin http://www.some-sender.com on receiver side www.some-receiver.com,
"ABC".charCodeAt(0) // returns 65
The output of the above expression is "W". Explanation: The bracket notation with specific index
on a string returns the character at a specific location. Hence, it returns the character "W" of the
https://md2pdf.netlify.app 117/167
26/4/2021 md2pdf - Markdown to PDF
string. Since this is not supported in IE7 and below versions, you may need to use the .charAt()
method to get the desired result.
You can throw user defined exceptions or errors using Error object in try...catch block as below,
try {
throw new EvalError('Eval function error', 'someFile.js', 100);
} catch (e) {
console.log(e.message, e.name, e.fileName); // "Eval function error", "Eval
340. What are the list of cases error thrown from non-strict mode to strict
mode
When you apply 'use strict'; syntax, some of the below cases will throw a SyntaxError before
executing the script
var n = 022;
https://md2pdf.netlify.app 118/167
26/4/2021 md2pdf - Markdown to PDF
Hence, the errors from above cases are helpful to avoid errors in development/production
environments.
element exists)
https://md2pdf.netlify.app 119/167
26/4/2021 md2pdf - Markdown to PDF
The concat() method is used to join two or more arrays by returning a new array containing all
the elements. The syntax would be as below,
Let's take an example of array's concatenation with veggies and fruits arrays,
Shallow Copy: Shallow copy is a bitwise copy of an object. A new object is created that has an
exact copy of the values in the original object. If any of the fields of the object are references to
other objects, just the reference addresses are copied i.e., only the memory address is copied.
Example
to create a duplicate
if we change some property value in the duplicate one like this: empDetailsShallowCopy.name
= "Johnson"
The above statement will also change the name of empDetails , since we have a shallow copy.
That means we're losing the original data as well.
Deep copy: A deep copy copies all fields, and makes copies of dynamically allocated memory
pointed to by the fields. A deep copy occurs when an object is copied along with the objects to
which it refers.
Example
https://md2pdf.netlify.app 120/167
26/4/2021 md2pdf - Markdown to PDF
var empDetails = {
name: "John", age: 25, expertise: "Software Developer" }
Create a deep copy by using the properties from the original object into new variable
var empDetailsDeepCopy = {
name: empDetails.name, age:
empDetails.age,
expertise: empDetails.expertise }
Now if you change empDetailsDeepCopy.name , it will only affect empDetailsDeepCopy & not
empDetails
'Hello'.repeat(4); // 'HelloHelloHelloHello'
347. How do you return all matching strings against a regular expression
The matchAll() method can be used to return an iterator of all results matching a string against a
regular expression. For example, the below example returns an array of matching string results
against a regular expression,
[...greeting.matchAll(regexp)];
https://md2pdf.netlify.app 121/167
26/4/2021 md2pdf - Markdown to PDF
console.log(greeting.trimEnd()); // " Hello, Goodmorning!"
console.log(greeting.trimRight()); // " Hello, Goodmorning!"
349. What is the output of below console statement with unary operator
Let's take console statement with unary operator as given below,
console.log(+ 'Hello');
The output of the above console log statement returns NaN. Because the element is prefixed by
the unary operator and the JavaScript interpreter will try to convert that element into a number
type. Since the conversion fails, the value of the statement results in NaN value.
// 5
function fetchData(fn){
fetch('https://jsonplaceholder.typicode.com/todos/1')
.then(response => response.json())
.then(json => fn(json))
}
asyncThunk()
https://md2pdf.netlify.app 122/167
26/4/2021 md2pdf - Markdown to PDF
The getData function won't be called immediately but it will be invoked only when the data is
available from API endpoint. The setTimeout function is also used to make our code
asynchronous. The best real time example is redux state management library which uses the
asynchronous thunks to delay the actions to dispatch.
console.log(circle.diameter()); console.log(circle.perimeter());
Output:
The output is 40 and NaN. Remember that diameter is a regular function, whereas the value of
perimeter is an arrow function. The this keyword of a regular function(i.e, diameter) refers to the
surrounding scope which is a class(i.e, Shape object). Whereas this keyword of perimeter function
refers to the surrounding scope which is a window object. Since there is no radius property on
window objects it returns an undefined value and the multiple of number value returns NaN
value.
In the above expression, g and m are for global and multiline flags.
element's classes are a few of the things that can trigger reflow. Reflow of an element causes the
subsequent reflow of all child and ancestor elements as well as any elements following it in the
DOM.
console.log(+null); // 0
console.log(+undefined);// NaN
console.log(+false); // 0
console.log(+NaN); // NaN console.log(+"");
// 0
i. Since Arrays are truthful values, negating the arrays will produce false: ![] === false
ii. As per JavaScript coercion rules, the addition of arrays together will toString them: [] + []
=== ""
iii. Prepend an array with + operator will convert an array to false, the negation will make it
true and finally converting the result will produce value '1': +(!(+[])) === 1
https://md2pdf.netlify.app 124/167
26/4/2021 md2pdf - Markdown to PDF
s e l f ^^^^^^^^^^^^^
^^^^^^^^^^^^^ ^^^^^^^^^^^^^ ^^^^^^^^^^^^^
const obj = { x: 1 };
// Grabs obj.x as as { otherName } const
{ x: otherName } = obj;
363. How do you map the array values without using map method
You can map the array values without using the map method by just using the from method of
Array. Let's map city names from Countries array,
https://md2pdf.netlify.app 125/167
26/4/2021 md2pdf - Markdown to PDF
const countries = [
{ name: 'India', capital: 'Delhi' },
{ name: 'US', capital: 'Washington' },
{ name: 'Russia', capital: 'Moscow' },
{ name: 'Singapore', capital: 'Singapore' },
{ name: 'China', capital: 'Beijing' },
{ name: 'France', capital: 'Paris' },
];
i. %o — It takes an object,
ii. %s — It takes a string,
iii. %d — It is used for a decimal or integer These placeholders can be represented in the
console.log as below
const user = { "name":"John", "id": 1, "city": "Delhi"};
console.log("Hello %s, your details %o are available in the object form", "John", user); /
console.log('%c The text has blue color, with large font and red background', 'color: blue
Screenshot
372. How do you display data in a tabular format using console object
https://md2pdf.netlify.app 127/167
26/4/2021 md2pdf - Markdown to PDF
The console.table() is used to display data in the console in a tabular format to visualize
complex arrays or objects.
document.querySelector("#copy-button").onclick = function() {
// Select the content document.querySelector("#copy-
input").select();
// Copy to the clipboard
document.execCommand('copy'); };
const biDimensionalArr = [11, [22, 33], [44, 55], [66, 77], 88, 99];
const flattenArr = [].concat(...biDimensionalArr); // [11, 22, 33, 44, 55, 66, 77, 88, 99]
https://md2pdf.netlify.app 128/167
26/4/2021 md2pdf - Markdown to PDF
But you can make it work with multi-dimensional arrays by recursive calls,
window.onbeforeunload = function() {
alert("You work will be lost"); };
https://md2pdf.netlify.app 129/167
26/4/2021 md2pdf - Markdown to PDF
let name = "john"; console.log(name.toUpperCase()); // Behind the scenes treated as
console.log(new String(n
i.e, Every primitive except null and undefined have Wrapper Objects and the list of wrapper
objects are String,Number,Boolean,Symbol and BigInt.
382. What are the different ways to deal with Asynchronous Code
Below are the list of different ways to deal with Asynchronous code.
i. Callbacks
ii. Promises
iii. Async/await
iv. Third-party libraries such as async.js,bluebird etc
https://md2pdf.netlify.app 130/167
26/4/2021 md2pdf - Markdown to PDF
fetch("http://localhost:8000", { signal }).then(response => {
console.log(`Request 2 is complete!`);
}).catch(e => {
if(e.name === "AbortError") {
// We know it's been canceled!
}
});
In this API, browser is going to ask you for permission to use your microphone
The above examples can be tested on chrome(33+) browser's developer console. Note: This API
is still a working draft and only available in Chrome and Firefox browsers(ofcourse Chrome only
implemented the specification)
https://md2pdf.netlify.app 131/167
26/4/2021 md2pdf - Markdown to PDF
triggered due to callback nesting(certain depth) or after a certain number of successive intervals.
Note: The older browsers have a minimum delay of 10ms. Nodejs: They have a minimum delay
of 1ms. This throttle happens when the delay is larger than 2147483647 or less than 1. The best
example to explain this timeout throttling behavior is the order of below code snippet.
Script loaded
My script is initialized
function runMeFirst() {
console.log('My script is initialized');
}
runMeFirst();
console.log('Script loaded');
My script is initialized
Script loaded
i. When a new javascript program is executed directly from console or running by the
<script> element, the task will be added to the task queue. ii. When an event fires,
the event callback added to task queue
https://md2pdf.netlify.app 132/167
26/4/2021 md2pdf - Markdown to PDF
iii. When a setTimeout or setInterval is reached, the corresponding callback added to task
queue
Note: All of these microtasks are processed in the same turn of the event loop.
In the runtime, typescript will provide the type to the customLibrary variable as any type. The
another alternative without using declare keyword is below
Eager in nature; they are going to be Lazy in nature; they require subscription to be
called immediately invoked
https://md2pdf.netlify.app 133/167
26/4/2021 md2pdf - Markdown to PDF
Promises Observables
Screenshot
Screenshot
https://md2pdf.netlify.app 134/167
26/4/2021 md2pdf - Markdown to PDF
In JavaScript, primitive types include boolean, string, number, BigInt, null, Symbol and undefined.
Whereas non-primitive types include the Objects. But you can easily identify them with the below
function,
isPrimitive(myPrimitive); isPrimitive(myNonPrimitive);
If the value is a primitive data type, the Object constructor creates a new wrapper object for the
value. But If the value is a non-primitive data type (an object), the Object constructor will give the
same object.
i. Transform syntax
ii. Polyfill features that are missing in your target environment (using @babel/polyfill)
iii. Source code transformations (or codemods)
https://md2pdf.netlify.app 135/167
26/4/2021 md2pdf - Markdown to PDF
var a = 100;
function createFunction() { var a
= 200; return new
Function('return a;');
}
console.log(createFunction()()); // 100 Function
declaration:
var a = 100;
function createFunction() {
var a = 200; return
function func() {
return a;
} }
console.log(createFunction()()); // 200
if (authenticate) {
loginToPorta();
}
Since the javascript logical operators evaluated from left to right, the above expression can be
simplified using && logical operator
array.length = 2; console.log(array.length);
// 2 console.log(array); // [1,2]
console.log(value));
Screenshot
Note: Observables are not part of the JavaScript language yet but they are being proposed to be
added to the language
Classes:
User {}
Constructor Function:
https://md2pdf.netlify.app 137/167
26/4/2021 md2pdf - Markdown to PDF
function User() {
}
Let's say you expect to print an error to the console for all the below cases,
Promise.resolve('promised value').then(function() {
throw new Error('error'); });
Promise.reject('error value').catch(function() {
throw new Error('error');
});
But there are many modern JavaScript environments that won't print any errors. You can fix this
problem in different ways,
i. Add catch block at the end of each chain: You can add catch block to the end of each of
your promise chains
https://md2pdf.netlify.app 138/167
26/4/2021 md2pdf - Markdown to PDF
Promise.resolve('promised value').then(function() {
throw new Error('error'); }).catch(function(error) {
console.error(error.stack);
});
But it is quite difficult to type for each promise chain and verbose too.
ii. Add done method: You can replace first solution's then and catch blocks with done
method
Promise.resolve('promised value').done(function() {
throw new Error('error');
});
Let's say you want to fetch data using HTTP and later perform processing on the resulting
data asynchronously. You can write done block as below,
getDataFromHttp()
.then(function(result) {
return processDataAsync(result);
})
.done(function(processed) {
displayData(processed);
});
In future, if the processing library API changed to synchronous then you can remove done
block as below,
getDataFromHttp()
.then(function(result) { return
displayData(processDataAsync(result));
})
and then you forgot to add done block to then block leads to silent errors.
iii. Extend ES6 Promises by Bluebird: Bluebird extends the ES6 Promises API to avoid the
issue in the second solution. This library has a “default” onRejection handler which will print
all errors from rejected Promises to stderr. After installation, you can process unhandled
rejections
Promise.onPossiblyUnhandledRejection(function(error){
throw error;
});
https://md2pdf.netlify.app 139/167
26/4/2021 md2pdf - Markdown to PDF
Promise.reject('error value').catch(function() {});
const collection = {
one: 1, two: 2,
three: 3,
[Symbol.iterator]() { const
values = Object.keys(this); let i
= 0; return { next: () => {
return {
value: this[values[i++]],
done: i > values.length
}
}
};
} }; const iterator =
collection[Symbol.iterator]();
const collection = {
one: 1, two: 2,
three: 3,
[Symbol.iterator]: function * () {
for (let key in this) { yield
this[key];
}
} }; const iterator = collection[Symbol.iterator]();
console.log(iterator.next()); // {value: 1, done: false}
console.log(iterator.next()); // {value: 2, done: false}
console.log(iterator.next()); // {value: 3, done: false}
console.log(iterator.next()); // {value: undefined, done: true}
https://md2pdf.netlify.app 140/167
26/4/2021 md2pdf - Markdown to PDF
For example, the below classic or head recursion of factorial function relies on stack for each
step. Each step need to be processed upto n * factorial(n - 1)
function factorial(n) {
if (n === 0) {
return 1
} return n * factorial(n
- 1)
}
console.log(factorial(5)); //120
But if you use Tail recursion functions, they keep passing all the necessary data it needs down the
recursion without relying on the stack.
The above pattern returns the same output as the first one. But the accumulator keeps track of
total as an argument without using stack memory on recursive calls.
function isPromise(object){
if(Promise && Promise.resolve){
return Promise.resolve(object) == object;
}else{
throw "Promise not supported in your environment"
}
}
https://md2pdf.netlify.app 141/167
26/4/2021 md2pdf - Markdown to PDF
console.log(isPromise(i)); // false
console.log(isPromise(p)); // true
414. What are the differences between arguments object and rest parameter
There are three main differences between arguments object and rest parameters
i. The arguments object is an array-like but not an array. Whereas the rest parameters are
array instances.
ii. The arguments object does not support methods such as sort, map, forEach, or pop.
Whereas these methods can be used in rest parameters. iii. The rest parameters are only
the ones that haven’t been given a separate name, while the arguments object contains all
arguments passed to the function
415. What are the differences between spread operator and rest parameter
https://md2pdf.netlify.app 142/167
26/4/2021 md2pdf - Markdown to PDF
Rest parameter collects all remaining elements into an array. Whereas Spread operator allows
iterables( arrays / objects / strings ) to be expanded into single arguments/elements. i.e, Rest
parameter is opposite to the spread operator.
function* myGenFunc() {
yield 1; yield 2;
yield 3;
}
const genObj = myGenFunc();
const myObj = {
* myGeneratorMethod() {
yield 1; yield 2;
yield 3;
}
};
const genObj = myObj.myGeneratorMethod();
class MyClass {
* myGeneratorMethod() {
yield 1; yield 2;
yield 3;
}
}
const myObject = new MyClass(); const
genObj = myObject.myGeneratorMethod();
https://md2pdf.netlify.app 143/167
26/4/2021 md2pdf - Markdown to PDF
const SomeObj = {
*[Symbol.iterator] () {
yield 1; yield 2;
yield 3;
} } console.log(Array.from(SomeObj)); // [ 1,
2, 3 ]
418. What are the differences between for...of and for...in statements
Both for...in and for...of statements iterate over js data structures. The only difference is over what
they iterate:
= 'newVlue';
Since for..in loop iterates over the keys of the object, the first loop logs 0, 1, 2 and newProp while
iterating over the array object. The for..of loop iterates over the values of a arr data structure and
logs a, b, c in the console.
https://md2pdf.netlify.app 144/167
26/4/2021 md2pdf - Markdown to PDF
The Instance properties must be defined inside of class methods. For example, name and age
properties defined insider constructor as below,
class Person {
constructor(name, age) {
this.name = name; this.age
= age;
}
}
But Static(class) and prototype data properties must be defined outside of the ClassBody
declaration. Let's assign the age value for Person class as below,
Person.staticAge = 30;
Person.prototype.prototypeAge = 40;
isNaN(‘hello’); // true
Number.isNaN('hello'); // false
Since both IIFE and void operator discard the result of an expression, you can avoid the extra
brackets using void operator for IIFE as below,
void function(dt) {
console.log(dt.toLocaleTimeString());
}(new Date());
https://md2pdf.netlify.app 145/167
26/4/2021 md2pdf - Markdown to PDF
It is also possible to add more styles for the content. For example, the font-size can be modified
for the above text
Coding Exercise
1. What is the output of below code
https://md2pdf.netlify.app 146/167
26/4/2021 md2pdf - Markdown to PDF
1: Undefined
2: ReferenceError
3: null
4: {model: "Honda", color: "white", year: "2010", country: "UK"}
Answer
function foo() {
let x = y = 0;
x++; y++;
return x; } console.log(foo(),
Answer
1: A, B and C
2: B, A and C
3: A and C
4: A, C and B
Answer
1: false
2: true
Answer
var y = 1; if
(function f(){}) {
y += typeof f; }
console.log(y);
1: 1function
2: 1object
3: ReferenceError
4: 1undefined
Answer
function foo() {
return {
message: "Hello World"
}; }
console.log(foo());
1: Hello World
2: Object {message: "Hello World"}
3: Undefined
4: SyntaxError
Answer
https://md2pdf.netlify.app 148/167
26/4/2021 md2pdf - Markdown to PDF
Answer
Answer
console.log(obj.prop1()); console.log(obj.prop2());
console.log(obj.prop3());
1: 0, 1, 2
2: 0, { return 1 }, 2
3: 0, { return 1 }, { return 2 }
4: 0, 1, undefined
Answer
https://md2pdf.netlify.app 149/167
26/4/2021 md2pdf - Markdown to PDF
1: true, true
2: true, false
3: SyntaxError, SyntaxError,
4: false, false
Answer
1: 1, 2, 3
2: 3, 2, 3
3: SyntaxError: Duplicate parameter name not allowed in this context
4: 1, 2, 1
Answer
1: 1, 2, 3
2: 3, 2, 3
3: SyntaxError: Duplicate parameter name not allowed in this context
4: 1, 2, 1
Answer
https://md2pdf.netlify.app 150/167
26/4/2021 md2pdf - Markdown to PDF
Answer
1: True, False
2: False, True
Answer
console.log(Math.max());
1: undefined
2: Infinity
3: 0
4: -Infinity
Answer
https://md2pdf.netlify.app 151/167
26/4/2021 md2pdf - Markdown to PDF
1: True, True
2: True, False
3: False, False
4: False, True
Answer
1: 20, 0
2: 1010, 0
3: 1010, 10-10
4: NaN, NaN
Answer
console.log([0] == false);
if([0]) { console.log("I'm
True"); } else {
console.log("I'm False");
}
Answer
https://md2pdf.netlify.app 152/167
26/4/2021 md2pdf - Markdown to PDF
1: [1,2,3,4]
2: [1,2][3,4]
3: SyntaxError
4: 1,23,4
Answer
Answer
1: True
2: False
Answer
https://md2pdf.netlify.app 153/167
26/4/2021 md2pdf - Markdown to PDF
1: 4
2: NaN
3: SyntaxError
4: -1
Answer
1: 1, [2, 3, 4, 5]
2: 1, {2, 3, 4, 5}
3: SyntaxError
4: 1, [2, 3, 4]
Answer
Answer
https://md2pdf.netlify.app 154/167
26/4/2021 md2pdf - Markdown to PDF
Answer
3, 4]);
1: SyntaxError
2: 1, 2, 3, 4
3: 4, 4, 4, 4
4: 4, 3, 2, 1
Answer
https://md2pdf.netlify.app 155/167
26/4/2021 md2pdf - Markdown to PDF
process([1, 2, 3, 5]);
Answer
Answer
1: true, true
2: true, false
3: false, true
4: false, false
Answer
https://md2pdf.netlify.app 156/167
26/4/2021 md2pdf - Markdown to PDF
const sym1 = new Symbol('one'); console.log(sym1);
1: SyntaxError
2: one
3: Symbol('one')
4: Symbol
Answer
1: SyntaxError
2: It is not a string!, It is not a number!
3: It is not a string!, It is a number!
4: It is a string!, It is a number!
Answer
Answer
https://md2pdf.netlify.app 157/167
26/4/2021 md2pdf - Markdown to PDF
class A { constructor() {
console.log(new.target.name)
} } class B extends A { constructor() {
super() } }
1: A, A
2: A, B
Answer
1: 1, [2, 3, 4]
2: 1, [2, 3]
3: 1, [2]
4: SyntaxError
Answer
console.log(x); console.log(y);
1: 30, 20
2: 10, 20
3: 10, undefined
4: 30, undefined
Answer
https://md2pdf.netlify.app 158/167
26/4/2021 md2pdf - Markdown to PDF
1: 200
2: Error
3: undefined
4: 0
Answer
1: Tom
2: Error
3: undefined
4: John
Answer
function checkType(num = 1) {
console.log(typeof num);
} checkType();
checkType(unde
fined);
checkType('');
checkType(null
);
https://md2pdf.netlify.app 159/167
26/4/2021 md2pdf - Markdown to PDF
Answer
console.log(add('Orange')); console.log(add('Apple'));
Answer
1: SyntaxError
2: ['Hello', 'John', 'Hello John'], ['Hello', 'John', 'Good morning!']
Answer
https://md2pdf.netlify.app 160/167
26/4/2021 md2pdf - Markdown to PDF
1: ReferenceError
2: Inner
Answer
Answer
1: ['key', 'value']
2: TypeError
3: []
4: ['key']
Answer
function* myGenFunc() {
yield 1; yield 2;
yield 3;
} var myGenObj = new myGenFunc;
console.log(myGenObj.next().value);
https://md2pdf.netlify.app 161/167
26/4/2021 md2pdf - Markdown to PDF
1: 1
2: undefined
3: SyntaxError
4: TypeError
Answer
function* yieldAndReturn() {
yield 1; return 2; yield
3; }
1: { value: 1, done: false }, { value: 2, done: true }, { value: undefined, done: true }
2: { value: 1, done: false }, { value: 2, done: false }, { value: undefined, done: true }
3: { value: 1, done: false }, { value: 2, done: true }, { value: 3, done: true }
4: { value: 1, done: false }, { value: 2, done: false }, { value: 3, done: true }
Answer
Answer
https://md2pdf.netlify.app 162/167
26/4/2021 md2pdf - Markdown to PDF
1: SyntaxError
2: 38
Answer
class Square {
constructor(length) {
this.length = length;
}
get area() {
return this.length * this.length;
}
set area(value) {
this.area = value;
}
}
1: 100
2: ReferenceError
Answer
function Person() { }
Person.prototype.walk = function() {
return this; }
Person.run = function() {
return this; }
https://md2pdf.netlify.app 163/167
26/4/2021 md2pdf - Markdown to PDF
let run = Person.run;
console.log(run());
1: undefined, undefined
2: Person, Person
3: SyntaxError
4: Window, Window
Answer
class Vehicle {
constructor(name) {
this.name = name;
}
start() { console.log(`${this.name}
vehicle started`);
} }
1: SyntaxError
2: BMW vehicle started, BMW car started
3: BMW car started, BMW vehicle started
4: BMW car started, BMW car started
Answer
https://md2pdf.netlify.app 164/167
26/4/2021 md2pdf - Markdown to PDF
1: 30
2: 25
3: Uncaught TypeError
4: SyntaxError
Answer
1: false
2: true
Answer
1: string
2: boolean
3: NaN
4: number
Answer
if (zero) {
console.log("If"); }
else {
console.log("Else"); }
https://md2pdf.netlify.app 165/167
26/4/2021 md2pdf - Markdown to PDF
1: If
2: Else
3: NaN
4: SyntaxError
Answer
= "John"; console.log(msg.name);
1: ""
2: Error
3: John
4: Undefined
Answer
(function innerFunc() {
if (count === 10) {
let count = 11;
console.log(count);
}
console.log(count); })();
1: 11, 10
2: 11, 11
3: 10, 11
4: 10, 10
Answer
Read also:
https://md2pdf.netlify.app 166/167
26/4/2021 md2pdf - Markdown to PDF
https://md2pdf.netlify.app 167/167