What is the difference between Java & JavaScript? What is JavaScript? What are the data types supported by JavaScript? What are the features of JavaScript? Is JavaScript a case-sensitive language? How can you create an object in JavaScript? Can you assign an anonymous function to a variable and pass it as an argument to another function? What are the scopes of a variable in JavaScript? What is the purpose of ‘This’ operator in JavaScript? What is Callback? What is Closure? What is the difference between Attributes and Property? What is the difference between Local storage & Session storage? What is the difference between null & undefined? What is the difference between the operators ‘==‘ & ‘===‘?
What is the difference between undeclared & undefined? What is the difference between innerHTML & innerText? What is an event bubbling in JavaScript? What is NaN in JavaScript? What is difference between document.getElementById() and document.querySelector()? When to use reduce(), map(), foreach() and filter() in JavaScript? What is Hoisting in JavaScript? How do you clone an object in JavaScript? What are the possible ways to create objects in JavaScript? Q. What is an event flow? Q. What is event capturing Q. What is prototype chain? Q. What is the difference between Call, Apply and Bind? Q. What is a higher order function? Q. What is a unary function?
Q. What is a first class function? Q. What is currying function? Q. What is a pure function? Q. What is memoization in JavaScript? Q. What is a post message? Q. What is a web-storage event and its event handler? Q. What are the restrictions of web workers on DOM? Q. What is a promise? Q. What is a callback function? Q. Why do we need callbacks? Q. What is a callback hell? Q. What is server-sent events? Q. What is callback in callback? Q. What is promise chaining? Q. What is promise.all()?
Q. What is the difference between null and undefined? Q. What is eval? Q. How do you access history in javascript? Q. What is isNaN? Q. What are the differences between undeclared and undefined variables? Q. What is NaN property? Q. How do you submit a form using JavaScript? Q. How do you find operating system details? Q. What is the difference between document load and DOMContentLoaded events? Q. What is the difference between native, host and user objects? Q. What are the pros and cons of promises over callbacks? Q. What is the difference between an attribute and a property? Q. What is the purpose of void(0)? Q. Is JavaScript a compiled or interpreted language? Q. What are events?
Q. What is BOM? Q. What is the use of setTimeout? Q. What is the use of setInterval? Q. Why is JavaScript treated as Single threaded? Q. What is the purpose JSON stringify? Q.How do you parse JSON string? Q.What is the purpose of clearTimeout method? Q.What is a rest parameter? Q. How do you determine whether object is frozen or not? Q. How do you determine two values same or not using object? Q. What are the differences between freeze and seal methods? Q. What is the main difference between Object.values and Object.entries method? Q. How can you get the list of keys of any object? Q. What is an anonymous function? Q. What is an Iterator?
Q. What is a decorator? Q. Explain the difference between synchronous and asynchronous functions? Q. What is event loop? What is the difference between call stack and task queue? Q. What are the differences between variables created using let, var or const? Q. What is the definition of a higher-order function? Q. What is “closure” in javascript? Q. Can you describe the main difference between a .forEach loop and a .map() loop and why you would pick one versus the other? Q. What is the difference between slice and splice? Q. What is difference between async() or defer() keyword in JavaScript? Q. What is difference between async() and await() in ajax? Q. What is rendering in JavaScript? Q. What is unshift() method in JavaScript? Q. What is callback() function in javascript? Q. Explain array methods [ join(), pop(), push(), shift(), unshift(), concat(), map(), filter(), reduce(), reduceRight(), every(), some(), indexOf(), lastIndexOf(), find(), findIndex(), includes() ] Q. How to avoid callback hell in javascript?
Q. What is the difference between encryption and hashing? Q. How do I modify the url without reloading the page? Q. What is throttling and debouncing in javascript? Q. ES6 vs ES5 Q. Apply vs Call Q. JavaScript vs JQuery Q. JavaScript vs Node JS Q. JavaScript and AngularJS Q. Bootstrap vs jQuery UI Q. JavaScript and JScript Q. ES6 vs ES5

Java is an OOP programming language.
JavaScript is an OOP scripting language
Java creates applications that run in a virtual machine or browser.
JS code is run on a browser only.
Java code needs to be compiled.
JS code are all in the form of text.

JavaScript is a lightweight, interpreted programming language with object-oriented capabilities that allows you to build interactivity into otherwise static HTML pages. The general-purpose core of the language has been embedded in Netscape, Internet Explorer, and other web browsers.

The data types supported by JavaScript are:Undefined,Null,Boolean,String,Symbol,Number,Object

Following are the features of JavaScript:
It is a lightweight, interpreted programming language.
It is designed for creating network-centric applications.
It is complementary to and integrated with Java.
It is an open and cross-platform scripting language.

Yes, JavaScript is a case sensitive language. The language keywords, variables, function names, and any other identifiers must always be typed with a consistent capitalization of letters.

JavaScript supports Object concept very well. You can create an object using the object literal as follows −
var emp = { name: "Daniel", age: 23 };

Yes! An anonymous function can be assigned to a variable. It can also be passed as an argument to another function.

Global Variables − A global variable has global scope which means it is visible everywhere in your JavaScript code.
Local Variables − A local variable will be visible only within a function where it is defined. Function parameters are always local to that function.

The JavaScript this keyword refers to the object it belongs to. This has different values depending on where it is used. In a method, this refers to the owner object and in a function, this refers to the global object.

A callback is a plain JavaScript function passed to some method as an argument or option. It is a function that is to be executed after another function has finished executing, hence the name ‘call back‘. In JavaScript, functions are objects. Because of this, functions can take functions as arguments, and can be returned by other functions.

A closure is the combination of a function and the lexical environment within which that function was declared. i.e, It is an inner function that has access to the outer or enclosing function’s variables. The closure has three scope chains
Own scope where variables defined between its curly brackets
Outer function’s variables
Global variables

Attributes- provide more details on an element like id, type, value etc.
Property- is the value assigned to the property like type=”text”, value=’Name’ etc

Local Storage – The data is not sent back to the server for every HTTP request (HTML, images, JavaScript, CSS, etc) – reducing the amount of traffic between client and server. It will stay until it is manually cleared through settings or program.
Session Storage – It is similar to local storage; the only difference is while data stored in local storage has no expiration time, data stored in session storage gets cleared when the page session ends. Session Storage will leave when the browser is closed.

Undefined means a variable has been declared but has not yet been assigned a value. On the other hand, null is an assignment value. It can be assigned to a variable as a representation of no value. Also, undefined and null are two distinct types: undefined is a type itself (undefined) while null is an object.

The main difference between “==” and “===” operator is that formerly compares variable by making type correction e.g. if you compare a number with a string with numeric literal, == allows that, but === doesn’t allow that, because it not only checks the value but also type of two variable, if two variables are not of the same type “===” return false, while “==” return true.

Undeclared variables are those that do not exist in a program and are not declared. If the program tries to read the value of an undeclared variable, then a runtime error is encountered. Undefined variables are those that are declared in the program but have not been given any value. If the program tries to read the value of an undefined variable, an undefined value is returned.

innerHTML – It will process an HTML tag if found in a string
innerText – It will not process an HTML tag if found in a string

Event bubbling is a way of event propagation in the HTML DOM API, when an event occurs in an element inside another element, and both elements have registered a handle for that event. With bubbling, the event is first captured and handled by the innermost element and then propagated to outer elements. The execution starts from that event and goes to its parent element. Then the execution passes to its parent element and so on till the body element.

NaN is a short form of Not a Number. Since NaN always compares unequal to any number, including NaN, it is usually used to indicate an error condition for a function that should return a valid number. When a string or something else is being converted into a number and that cannot be done, then we get to see NaN.

document.getElementById() Returns an element object representing the element whose id property matches the specified string. Since element IDs are required to be unique if specified, they're a useful way to get access to a specific element quickly.
document.querySelector() Returns the first matching Element node within the node's subtree. If no matching node is found, null is returned.
document.querySelectorAll() Returns a NodeList containing all matching Element nodes within the node's subtree, or an empty NodeList if no matches are found.

forEach() It takes a callback function and run that callback function on each element of array one by one. Basically forEach works as a traditional for loop looping over the array and providing array elements to do operations on them.
var arr = [10, 20, 30];
arr.forEach(function (elem, index){ console.log(elem + ' comes at ' + index); })
Output 10 comes at 0 20 comes at 1 30 comes at 2

filter()
The main difference between forEach() and filter() is that forEach just loop over the array and executes the callback but filter executes the callback and check its return value. If the value is true element remains in the resulting array but if the return value is false the element will be removed for the resulting array.
var arr = [10, 20, 30];
var result = arr.filter(function(elem){
return elem !== 20;
})
console.log(result)
Output
[10,30]
map()
map() like filter() & forEach() takes a callback and run it against every element on the array but whats makes it unique is it generate a new array based on your existing array.
Like filter(), map() also returns an array. The provided callback to map modifies the array elements and save them into the new array upon completion that array get returned as the mapped array.
var arr = [10, 20, 30];
var mapped = arr.map(function(elem) {
return elem * 10;
});
console.log(mapped)
Output
[100, 200, 300]
reduce()
reduce() method of the array object is used to reduce the array to one single value.
var arr = [10, 20, 30];
var sum = arr.reduce(function(sum, elem) {
return sum + elem;
});
console.log(sum); // Output: 60

Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope before code execution.
All declarations (function, var, let, const and class) are hoisted in JavaScript, while the var declarations are initialized with undefined, but let and const declarations remain uninitialized.
They will only get initialized when their lexical binding (assignment) is evaluated during runtime by the JavaScript engine. This means we can’t access the variable before the engine evaluates its value at the place it was declared in the source code. This is what we call Temporal Dead Zone, A time span between variable creation and its initialization where they can’t be accessed.

Using the object spread operator ..., the object own enumerable properties can be copied into the new object. This creates a shallow clone of the object.
const obj = { a: 1, b: 2 }
const shallowClone = { ...obj }
Other alternatives include:
JSON.parse(JSON.stringify(obj)) can be used to deep-clone a simple object, but it is CPU-intensive and only accepts valid JSON (therefore it strips functions and does not allow circular references).
Object.assign({}, obj) is another alternative.
Object.keys(obj).reduce((acc, key) => (acc[key] = obj[key], acc), {}) is another more verbose alternative that shows the concept in greater depth.

a) Object constructor:
var Object = new Object();
b) Object create method:
var Object=Object.create(null);
c) Object literal syntax:
var object={};
d) Function constructor:
function Person(name){
var object = {};
object.name = name;
object.age = 26;
return object; } var object =new Person("Alex")
e) Function constructor with prototype:
function Person(){}
Person.prototype.name = "Alex";
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.
function func {};
new func(x, y, z);
// **(OR)**
// Create a new instance using function prototype.
var newInstance = Object.create(func.prototype)
// Call the function
var result = func.call(newInstance, x, y, z),
// 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);
f.) ES6 Class syntax:
class Person {
constructor(name) {
this.name = name;
}
}
var object = new Person("Alex");
g.) Singleton pattern:
var object = new function() {
this.name = "Alex";
}

Event flow is the order in which event is received on the web page. When you click an element that is nested in various other elements, before your click actually reaches its destination, or target element, it must trigger the click event each of its parent elements first, starting at the top with the global window object. There are two ways of event flow
Top to Bottom(Event Capturing)
Bottom to Top (Event Bubbling)

Event capturing is a type of event propagation where the event is first captured by the outermost element and then successively triggers on the descendants (children) of the target element in the same nesting hierarchy till it reaches the inner DOM element.

Nearly all objects in JavaScript are instances of Object. That means all the objects in JavaScript inherit the properties and methods from Object.prototype. This is called Prototype chaining.

a.) call() The call() method invokes a function with a given this value and arguments provided one by one
b.) apply() Invokes the function and allows you to pass in arguments as an array
c.) bind() returns a new function, allowing you to pass in an array and any number of arguments

A Higher-Order function is a function that receives a function as an argument or returns the function as output.
For example, Array.prototype.map(), Array.prototype.filter() and Array.prototype.reduce() are some of the Higher-Order functions in javascript.

Unary function (i.e. monadic) is a function that accepts exactly one argument. Let us take an example of unary function. It stands for single argument accepted by a function.

JavaScript functions are first-class functions meaning functions and objects are treated as the same thing. Functions can be stored as a variable inside an object or an array as well as it can be passed as an argument or be returned by another function. That makes function "first-class citizens in JavaScript"

Currying is the process of taking a function with multiple arguments and turning it into a sequence of functions each with only a single argument. Curried functions are great to improve code re-usability and functional composition.

Pure functions are functions that accept an input and returns a value without modifying any data outside its scope(Side Effects). Its output or return value must depend on the input/arguments and pure functions must return a value.

Memoization is a programming technique which attempts to increase a function’s performance by caching its previously computed results. Each time a memoized function is called, its parameters are used to index the cache. If the data is present, then it can be returned, without executing the entire function. Otherwise the function is executed and then the result is added to the cache.

Post message is a method that enables cross-origin communication between Window objects.(i.e, between a page and a pop-up that it spawned, or between a page and an iframe embedded within it). Generally, scripts on different pages are allowed to access each other if and only if the pages follow same-origin policy(i.e, pages share the same protocol, port number, and host).

The StorageEvent is an event that fires when a storage area has been changed in the context of another document. Whereas onstorage property is an EventHandler for processing storage events.

WebWorkers do not have access to below javascript objects since they are defined in an external files
Window object
Document object
Parent object

A promise is an object that may produce a single value some time in the future with either a resolved value or a reason that it’s not resolved(for example, network error). It will be in one of the 3 possible states: fulfilled, rejected, or pending. Syntax
const promise = new Promise(function(resolve, reject) {
// promise description
})
Promises are used to handle asynchronous operations. They provide an alternative approach for callbacks by reducing the callback hell and writing the cleaner code.
Promises have three states:
Pending: This is an initial state of the Promise before an operation begins
Fulfilled: This state indicates that specified operation was completed.
Rejected: This state indicates that the operation did not complete. In this case an error value will be thrown.

A callback function is a function passed into another function as an argument. This function is invoked inside the outer function to complete an action.
function callbackFunction(name) {
console.log('Hello ' + name);
}
function outerFunction(callback) {
let name = prompt('Please enter your name.');
callback(name);
}
outerFunction(callbackFunction);

The callbacks are needed because javascript is a event driven language. That means instead of waiting for a response javascript will keep executing while listening for other events.

Callback Hell is an anti-pattern with multiple nested callbacks which makes code hard to read and debug when dealing with asynchronous logic.

Server-sent events (SSE) is a server push technology enabling a browser to receive automatic updates from a server via HTTP connection without resorting to polling. These are a one way communications channel - events flow from server to client only. This is been used in Facebook/Twitter updates, stock price updates, news feeds etc.

You can nest one callback inside in another callback to execute the actions sequentially one by one. This is known as callbacks in callbacks.

The process of executing a sequence of asynchronous tasks one after another using promises is known as Promise chaining.

Promise.all is a promise that takes an array of promises as an input (an iterable), and it gets resolved when all the promises get resolved or any one of them gets rejected.

Null
It is an assignment value which indicates that variable points to no object.
Type of null is object
The null value is a primitive value that represents the null, empty, or non-existent reference.
Indicates the absence of a value for a variable
Converted to zero (0) while performing primitive operations
Undefined
It is not an assignment value where a variable has been declared but has not yet been assigned a value.
Type of undefined is undefined
The undefined value is a primitive value used when a variable has not been assigned a value.
Indicates absence of variable itself
Converted to NaN while performing primitive operations

The eval() function evaluates JavaScript code represented as a string. The string can be a JavaScript expression, variable, statement, or sequence of statements.

The window.history object contains the browsers history. You can load previous and next URLs in the history using back() and next() methods.

The isNaN() function is used to determine whether a value is an illegal number (Not-a-Number) or not. i.e, This function returns true if the value equates to NaN. Otherwise it returns false.

undeclared
These variables do not exist in a program and are not declared
If you try to read the value of an undeclared variable, then a runtime error is encountered
undefined
These variables declared in the program but have not assigned any value
If you try to read the value of an undefined variable, an undefined value is returned.

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

You can submit a form using JavaScript use document.form[0].submit(). All the form input information is submitted using onsubmit event handler
function submit() {
document.form[0].submit();
}

The window.navigator object contains information about the visitor's browser os details. Some of the OS properties are available under platform property,
console.log(navigator.platform);

The DOMContentLoaded event is fired when the initial HTML document has been completely loaded and parsed, without waiting for assets(stylesheets, images, and subframes) to finish loading. Whereas The load event is fired when the whole page has loaded, including all dependent resources(stylesheets, images).

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 considered as host objects.
User objects are objects defined in the javascript code. For example, User object created for profile information.

Pros:
It avoids callback hell which is unreadable
Easy to write sequential asynchronous code with .then()
Easy to write parallel asynchronous code with Promise.all()
Solves some of the common problems of callbacks(call the callback too late, too early, many times and swallow errors/exceptions)
Cons:
It makes little complex code
You need to load a polyfill if ES6 is not supported

Attributes are defined on the HTML markup whereas properties are defined on the DOM.

The void(0) is used to prevent the page from refreshing. This will be helpful to eliminate the unwanted side-effect, because it will return the undefined primitive value. It is commonly used for HTML document that uses href="JavaScript:void(0);" within an element. i.e, when you click a link, the browser loads a new page or refreshes the same page. But this behavior will be prevented using this expression.

JavaScript is an interpreted language, not a compiled language. An interpreter in the browser reads over the JavaScript code, interprets each line, and runs it. Nowadays modern browsers use a technology known as Just-In-Time (JIT) compilation, which compiles JavaScript to executable bytecode just as it is about to run.

Events are "things" that happen to HTML elements. When JavaScript is used in HTML pages, JavaScript can react on these events. Some of the examples of HTML events are,
Web page has finished loading
Input field was changed
Button was clicked

The Browser Object Model (BOM) allows JavaScript to "talk to" the browser. It consists of the objects navigator, history, screen, location and document which are children of window. The Browser Object Model is not standardized and can change based on different browsers.

The setTimeout() method is used to call a function or evaluates an expression after a specified number of milliseconds.

The setInterval() method is used to call a function or evaluates an expression at specified intervals (in milliseconds).

JavaScript is a single-threaded language. Because the language specification does not allow the programmer to write code so that the interpreter can run parts of it in parallel in multiple threads or processes. Whereas languages like java, go, C++ can make multi-threaded and multi-process programs.

When sending data to a web server, the data has to be in a string format. You can achieve this by converting JSON object into a string using stringify() method.

When receiving the data from a web server, the data is always in a string format. But you can convert this string value to javascript object using parse() method.

The clearTimeout() function is used in javascript to clear the timeout which has been set by setTimeout() function before that. i.e, The return value of setTimeout() function is stored in a variable and it’s passed into the clearTimeout() function to clear the timer.

Rest parameter is an improved way to handle function parameter which allows us to represent an indefinite number of arguments as an array.
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

Object.isFrozen() method is used to determine if an object is frozen or not. An object is frozen if all of the below conditions hold true,
If it is not extensible.
If all of its properties are non-configurable.
If all its data properties are non-writable.

The Object.is() method determines whether two values are the same value.
Two values are the same if one of the following holds:
both undefined
both null
both true or both false
both strings of the same length with the same characters in the same order
both the same object (means both object have same reference)
both numbers and both +0 both -0 both NaN both non-zero and both not NaN and both have the same value

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.

The Object.values() method's behavior is similar to Object.entries() method but it returns an array of values instead [key,value] pairs.

You can use Object.keys() method which is used return an array of a given object's own property names, in the same order as we get with a normal loop.

An anonymous function is a function without a name! Anonymous functions are commonly assigned to a variable name or used as a callback function.

An iterator is an object which defines a sequence and a return value upon its termination. It implements the Iterator protocol with a next() method which returns an object with two properties: value (the next value in the sequence) and done (which is true if the last value in the sequence has been consumed).

A decorator is an expression that evaluates to a function and that takes the target, name, and decorator descriptor as arguments. Also, it optionally returns a decorator descriptor to install on the target object.

Synchronous functions are blocking while asynchronous functions are not. In synchronous functions, statements complete before the next statement is run. In this case, the program is evaluated exactly in order of the statements and execution of the program is paused if one of the statements take a very long time. Asynchronous functions usually accept a callback as a parameter and execution continue on the next line immediately after the asynchronous function is invoked. The callback is only invoked when the asynchronous operation is complete and the call stack is empty. Heavy duty operations such as loading data from a web server or querying a database should be done asynchronously so that the main thread can continue executing other operations instead of blocking until that long operation to complete (in the case of browsers, the UI will freeze).

The event loop is a single-threaded loop that monitors the call stack and checks if there is any work to be done in the task queue. If the call stack is empty and there are callback functions in the task queue, a function is dequeued and pushed onto the call stack to be executed.

Variables declared using the var keyword are scoped to the function in which they are created, or if created outside of any function, to the global object. let and const are block scoped, meaning they are only accessible within the nearest set of curly braces (function, if-else block, or for-loop).
var allows variables to be hoisted, meaning they can be referenced in code before they are declared. let and const will not allow this, instead throwing an error.
Redeclaring a variable with var will not throw an error, but 'let' and 'const' will.
let and const differ in that let allows reassigning the variable's value while const does not.

A higher-order function is any function that takes one or more functions as arguments, which it uses to operate on some data, and/or returns a function as a result. Higher-order functions are meant to abstract some operation that is performed repeatedly. The classic example of this is map, which takes an array and a function as arguments. map then uses this function to transform each item in the array, returning a new array with the transformed data. Other popular examples in JavaScript are forEach, filter, and reduce. A higher-order function doesn't just need to be manipulating arrays as there are many use cases for returning a function from another function. Function.prototype.bind is one such example in JavaScript.

A closure is a function defined inside another function (called parent function) and has access to the variable which is declared and defined in parent function scope.
The closure has access to the variable in three scopes:
Variable declared in his own scope
Variable declared in parent function scope
Variable declared in the global namespace

forEach
The closure has access to the variable in three scopes:
Iterates through the elements in an array.
Executes a callback for each element.
Does not return a value.
map
Iterates through the elements in an array.
"Maps" each element to a new element by calling the function on each element, creating a new array as a result.
The main difference between .forEach and .map() is that .map() returns a new array. If you need the result, but do not wish to mutate the original array, .map() is the clear choice. If you simply need to iterate over an array, forEach is a fine choice.

Slice
Doesn't modify the original array(immutable)
Returns the subset of original array
Used to pick the elements from array
Splice
Modifies the original array(mutable)
Returns the deleted elements as array
Used to insert or delete elements to/from array

The async() Attribute The async attribute is used to indicate to the browser that the script file can be executed asynchronously. The HTML parser does not need to pause at the point it reaches the script tag to fetch and execute, the execution can happen whenever the script becomes ready after being fetched in parallel with the document parsing.
script async src="script.js"
The defer() Attribute
The defer attribute tells the browser to only execute the script file once the HTML document has been fully parsed.
script defer src="script.js"

When an async() function is called, it returns a Promise. When the async() function returns a value, the Promise will be resolved with the returned value. When the async() function throws an exception or some value, the Promise will be rejected with the thrown value.
An async function can contain an await() expression, which pauses the execution of the async() function and waits for the passed Promise's resolution, and then resumes the async() function's execution and returns the resolved value.

JavaScript-powered content needs to be rendered before it can output meaningful code and be displayed for the client. These are the different steps involved in the JavaScript rendering process:
JavaScript Rendering Process
JavaScript: Typically JavaScript is used to handle work that will result in visual changes.
Style calculations: This is the process of figuring out which CSS rules apply to which elements. They are applied and the final styles for each element are calculated.
Layout: Once the browser knows which rules apply to an element it can begin to calculate how much space it takes up and where it is on screen.
Paint: Painting is the process of filling in pixels. It involves drawing out text, colors, images, borders, and shadows, essentially every visual part of the elements.
Compositing: Since the parts of the page were drawn into potentially multiple layers they need to be drawn to the screen in the correct order so that the page renders correctly.
The main responsibility of the rendering engine is to display the requested page on the browser screen. Rendering engines can display HTML and XML documents and images.

The unshift() method adds one or more elements to the beginning of an array and returns the new length of the array.

A callback function is a function passed into another function as an argument, which is then invoked inside the outer function to complete some kind of routine or action.

a.) array.join(): The join() method creates and returns a new string by concatenating all of the elements in an array (or an array-like object), separated by commas or a specified separator string. If the array has only one item, then that item will be returned without using the separator.
b.) array.pop(): The pop() method removes the last element from an array and returns that element. This method changes the length of the array.
c.) array.push(): The push() method adds one or more elements to the end of an array and returns the new length of the array.
d.) array.shift(): The shift() method removes the first element from an array and returns that removed element. This method changes the length of the array.
e.) array.unshift(): The unshift() method adds one or more elements to the beginning of an array and returns the new length of the array.
f.) array.concat(): The concat() method is used to merge two or more arrays. This method does not change the existing arrays, but instead returns a new array.
g.) array.map(): The map() method creates a new array with the results of calling a provided function on every element in the calling array.
h.) array.filter(): The filter() method creates a new array with all elements that pass the test implemented by the provided function.
i.) array.reduce(): The reduce() method executes a reducer function (that you provide) on each element of the array, resulting in a single output value.
j.) array.reduceRight(): The reduceRight() method applies a function against an accumulator and each value of the array (from right-to-left) to reduce it to a single value.
k.) array.every(): The every() method tests whether all elements in the array pass the test implemented by the provided function. It returns a Boolean value.
l.) array.some(): The some() method tests whether at least one element in the array passes the test implemented by the provided function. It returns a Boolean value.
m.) array.indexOf(): The indexOf() method returns the first index at which a given element can be found in the array, or -1 if it is not present.
n.) array.lastIndexOf(): The lastIndexOf() method returns the index within the calling String object of the last occurrence of the specified value, searching backwards from fromIndex. Returns -1 if the value is not found.
o.) array.find(): The find() method returns the value of the first element in the provided array that satisfies the provided testing function.
p.) array.findIndex(): The findIndex() method returns the index of the first element in the array that satisfies the provided testing function. Otherwise, it returns -1, indicating that no element passed the test.
q.) array.includes(): The includes() method determines whether an array includes a certain value among its entries, returning true or false as appropriate.

Callback hell is a phenomenon that afflicts a JavaScript developer when he tries to execute multiple asynchronous operations one after the other. Some people call it to be the pyramid of doom.
Techniques for avoiding callback hell
Write comments
Split functions into smaller functions
Using Async.js
Using Promises
Using Async-Await

Encryption
Encryption is the process of encoding simple text and other information that can be accessed by the sole authorized entity if it has a decryption key. It will protect your sensitive data from being accessed by cyber criminals. It is the most effective way of achieving data security in modern communication systems. There are a number of encryption systems, where an asymmetric encryption is also known as public-key encryption, symmetric encryption and hybrid encryption are the most common.
Symmetric encryption – Uses the same secret key to encrypt and decrypt the message. The secret key can be a word, a number or a string of random letters. Both the sender and the receiver should have the key. It is the oldest technique of encryption.
Asymmetric encryption – It deploys two keys, a public key known by everyone and a private key known only by the receiver. The public key is used to encrypt the message and a private key is used to decrypt it. Asymmetric encryption is little slower than symmetric encryption and consumes more processing power when encrypting data.
Hybrid encryption – It is a process of encryption that blends both symmetric and asymmetric encryption. It takes advantage of the strengths of the two encryptions and minimizes their weakness.
Purpose of encryption
Confidentiality – Encrypted message cannot be read or changed by another person.
Encrypt – It transforms data in such a way that only specific individuals can transform the message.
Granular access control – Users are limited to what they can see and do.
It makes auditing for accountability easy. In the case of message leaked, it is easy to trace who did that and when thus security breaches can be sorted out efficiently.
Authentication – the origin of the message received can be traced thus facilitating authentication.
Hashing
In hashing, data is converted to the hash using some hashing function, which can be any number generated from string or text. Various hashing algorithms are MD5, SHA256. Data once hashed is non-reversible.
Hash function can be any function that is used to map data of arbitrary size to data of fixed size. The data structure hash table is used for storing of data.
For example: When images are sent to different server and text is sent to a different server for efficiency purposes. So for verifying images that the images are not tampered in between data transfer over the internet, hashing algorithm like MD5(), SHA() algorithm can be used.
Purpose of hashing
Hashing can be used to compare a large amount of data. Hash values can be created for different data, meaning that it is easier comparing hashes than the data itself.
It is easy to find a record when the data is hashed.
Hashing algorithms are used in cryptographic applications like a digital signature.
Hashing is used to generate random strings to avoid duplication of data stored in databases.
Geometric hashing – widely used in computer graphics to find closet pairs and proximity problems in planes. It is also called grid method and it has also been adopted in telecommunications.

The window.location.url property will be helpful to modify the url but it reloads the page. HTML5 introduced the history.pushState() and history.replaceState() methods, which allow you to add and modify history entries.

Debouncing and throttling techniques are used to limit the number of times a function can execute. These are two widely-used techniques to improve the performance of code that gets executed repeatedly within a period of time.
Throttling enforces a maximum number of times a function can be called over time. As in "execute this function at most once every 100 milliseconds."
Debouncing enforces that a function not be called again until a certain amount of time has passed without it being called. As in "execute this function only if 100 milliseconds have passed without it being called."

Definition:
ES6: ECMA script is basically a trademarked scripting language specification defined by Ecma international.The sixth edition of the same is known as ES6.
ES5: ECMA script is a trademarked scripting language specification defined by ema international. The fifth edition of the same is known as ES5.
Using Arrow Functions
ES6: function keyword need not to be used to defined the function and also the return keyword can e avoided to fetch the computed value.
ES5: function keyword need to be used to define the functions.
Object Manipulation
ES6: Object manipulation can be processed more smoothly.(due to the presence of destructuring, speed operators) than its previous versions.
ES5: also provides the same features but it's a bit more time consuming than that of ES6.
Performance
ES6: With the help of newly implemented features and shorthand storage implementation, ES6 scores a higher performance rank than ES5.
ES5: due to the non-presence of a few features, its performance is a bit less than that of ES6
Support
ES6: There is also a lot of community support for ES6. However, it is lesser than that of ES5.
ES5: ES5 provide a larger range of community supports than that of ES6

JavaScript vs JScript Comparison
Type:
Javascript: It is a scripting language.
JScript: JScript is also a scripting language owned by Microsoft.
Verbosity/Simplicity
Javascript: With JavaScript, one needs to write scripts manually which is time-consuming.
JScript: JScript is the same as JavaScript in this context
Browser Compatibility: With JavaScript, one needs to handle multiple browser compatibility by writing code.
Javascript:With JavaScript, one needs to handle multiple browser compatibility by writing code.
JScript:JScript is only supported by Microsoft’s Internet Explorer.
Compilation:
Javascript:We need not compile JavaScript codes. Our browsers run them.
JScript: Codes are written in JScript support conditional compilation. With this, we can place codes in block comments and execute them selectively. Starting from Microsoft Internet Explorer 11, conditional compilation is no longer supported
Active Content Creation
Javascript: We can simply write JavaScript codes inside the script tag in HTML. We write JavaScript codes in OBSL syntax (Object Based Script language)
JScript: Same goes for JScript. Here also we write the syntax same as JavaScript.
Speed:
Javascript: JavaScript is fast.
JScript: JScript is also fast.
Client Side/Server Side Language:
Javascript: Commonly used on Client Side.
JScript: Commonly used on Client Side.
Type: Object Access
Javascript: JavaScript cannot access web browser objects.
JScript: JScript can access objects exposed by Internet Explorer. An example of such an object is ActiveX.

Bootstrap vs jQuery UI type:Development
Bootstrap:Developed by Twitter
jQuery: Developed by jQuery Project Group
type: Functionality
Bootstrap: Focus on design and appearance
jQuery:Provide pre-written functions to enhance the functionality
type: Purpose
Bootstrap: Mainly a CSS framework
jQuery: Make it easier to use JavaScript
type: Market
Bootstrap: Bootstrap is still behind jQuery in market share
jQuery: jQuery is leading on the web front, with top sites
type: Customization
Bootstrap:It can be customized in a variety of ways by overriding the default CSS
jQuery: Existing functions can be overridden to provide new functionality
type: Orientation
Bootstrap: Highly oriented toward responsiveness
jQuery:jQuery responsive nature is less sophisticated than Bootstrap
type:Written-in
Bootstrap:Written using HTML, CSS, JavaScript, Less, Sass
jQuery:Written using JavaScript
type:Release
Bootstrap: the First release on August 26, 2011,
jQuery:Written using JavaScript

JavaScript and AngularJS
Type: Definition
JavaScript: JavaScript is an object-oriented scripting language.
AngularJS: AngularJS is an open-source framework for creating dynamic web applications.
Type: Programmed
JavaScript: JavaScript most interpreters are written in C and C++
AngularJS: AngularJS is written in JavaScript.
Type: Applications
JavaScript: JavaScript used for creating dynamic web applications.
AngularJS: AngularJS used for creating large single-page applications.
Type: Developed
JavaScript: It was mainly developed by Netscape Communications.
AngularJS: It was mainly developed by Google.
Type:Concept
JavaScript: JavaScript-based on the concept of dynamic typing as an interpreted language
AngularJS: It is based on the concept of a model view controller to build apps.
Type: Syntax
JavaScript: JavaScript syntax is complex as compared to AngularJS.
AngularJS: AngularJS syntax is simple.
Type: Learn ability
JavaScript: JavaScript is complex to learn.
AngularJS: AngularJS can learn easily if one knows JavaScript.
Type: Filters
JavaScript: JavaScript does not support filters.
AngularJS: AngularJS does support filters.

JavaScript vs Node JS:
type:
JavaScript: JavaScript is a programming language. It is running in any web browser with a proper browser engine.
NodeJs: It is an interpreter and environment for JavaScript with some specific useful libraries which JavaScript programming can use separately.
Utility:
JavaScript:Mainly using for any client-side activity for a web application, like possible attribute validation or refreshing the page in a specific interval or provide some dynamic changes in web pages without refreshing the page.
NodeJs: It mainly used for accessing or performing any non-blocking operation of any operating system, like creating or executing a shell script or accessing any hardware-specific information or running any backend job.
Running Engine:
JavaScript: JavaScript running any engine like Spider monkey (FireFox), JavaScript Core (Safari), V8 (Google Chrome).
NodeJs: Node JS only run in a V8 engine which mainly used by google chrome. And javascript program which will be written under this Node JS will be always run in V8 Engine.

Apply vs Call:
Type: Definition
Apply: JavaScript Apply function used to borrow functions and to set this value.
Call: JavaScript call function is derived from borrowing and invoking functions.
Type: Arguments
Apply: JavaScript Apply function takes the arguments as an Array.
Call: JavaScript Call function takes the arguments separately.
Type: Adding Elements
Apply: In JavaScript Apply, elements can be further added to another array.
Call: In the Call function, we have to add an element to the list only.
Type: Built-in function
Apply: In Javascript, the Apply method can use the built-in function like min and max functions.
Call: In the call function, the built-in functions cannot be used.
Type: Constructor
Apply: Apply function can be used for chain constructors for an object.
Call: The call function does not have this feature.
Type: Variadic Functions
Apply: Apply function able to use variadic functions
Call: Call function not able to use.

JavaScript vs JQuery
type:
JavaScript: It is a programming language.
JQuery: It is an API (application programming interface.)
type: Language
JavaScript: It is written in C. It is an interpreted language.
JQuery: Uses resources given by JavaScript to make things easier.
type: Verbosity/Simplicity
JavaScript: With JavaScript, one needs to write their own scripting, which is time-consuming.
JQuery: With JQuery, one need not write much as scripting already exists.
type: Compatibility
JavaScript: With JavaScript, one needs to handle multiple- browser compatibilities by writing their own code.
JQuery: With JQuery, as we all know that it is a multi-browser library.
type: Length of Code
JavaScript: With JavaScript, one has to write more lines of code.
JQuery: With JQuery, one has to write fewer lines of code than JavaScript.
type: Speed
JavaScript:Pure JavaScript is faster in accessing DOM (document object model.) as it cut the overhead which JQuery has.
JQuery: JQuery is also fast with modern browsers and modern computers. Suited for complex operations where developer are prone to mistakes and writing poor lines of code
type: Client-Side/Server Side Language
JavaScript: Commonly used on Client-Side
JQuery: Same for JQuery, it is also commonly used on the Client Side.
type:Light/Heavy Weight
JavaScript:Other than raw JavaScript, it is heavier than JQuery.
JQuery: It is lightweight as compared to other JavaScript libraries