Join Regular Classroom : Visit ClassroomTech

what is nodejs

NodeJS Interview Questions – Beginner Level | Codewindow.in

1. What is Node.js? Node.js is an open-source server side runtime environment built on Chrome’s V8 JavaScript engine. It provides an event driven, non-blocking (asynchronous) I/O and cross-platform runtime environment for building highly scalable server-side applications using JavaScript. 2. What are the benefits of using Node.js? From a web server development perspective Node has a

NodeJS Interview Questions – Beginner Level | Codewindow.in Read More »

JavaScript Interview Questions – Advanced Level | Codewindow.in

1. What is event bubbling? Event bubbling is a type of event propagation where the event first triggers on the innermost target element, and then successively triggers on the ancestors (parents) of the target element in the same nesting hierarchy till it reaches the outermost DOM element. Example: If you click on EM, the handler

JavaScript Interview Questions – Advanced Level | Codewindow.in Read More »

JavaScript Interview Questions – Intermediate Level | Codewindow.in

1. What is Hoisting in JavaScript? /*Example 01: Variable Hoisting*/ console.log(message); // output : undefined var message = "The variable Has been hoisted"; /*The above code looks like as below to the interpreter,*/ var message; console.log(message); message = "The variable Has been hoisted"; /*Example 02: Function Hoisting*/ function hoist() { a = 20; var b

JavaScript Interview Questions – Intermediate Level | Codewindow.in Read More »

JavaScript Interview Questions – Beginner Level | Codewindow.in

1. What is difference between document.getElementById() and document.querySelector()? 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.element = document.getElementById(id);document.querySelector(): Returns the first matching Element node within the

JavaScript Interview Questions – Beginner Level | Codewindow.in Read More »