Join Regular Classroom : Visit ClassroomTech

javascript

AngularJS Interview Questions – Beginner Level | Codewindow.in

1. What is Angular Framework? Angular is a TypeScript-based open-source front-end platform that makes it easy to build applications with in web/mobile/desktop. The major features of this framework such as declarative templates, dependency injection, end to end tooling, and many more other features are used to ease the development. 2. What are the key components […]

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

ReactJS Interview Questions – Intermediate Level | Codewindow.in

1. What is JSX? JSX is a XML-like syntax extension to ECMAScript (the acronym stands for JavaScript XML). Basically it just provides syntactic sugar for the React.createElement() function, giving us expressiveness of JavaScript along with HTML like template syntax. In the example below text inside <h1> tag is returned as JavaScript function to the render

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

ReactJS Interview Questions – Beginner Level | Codewindow.in

1. What is Node.js? React is an open-source frontend JavaScript library which is used for building user interfaces especially for single page applications. It is used for handling view layer for web and mobile apps. React was created by Jordan Walke, a software engineer working for Facebook. React was first deployed on Facebook’s News Feed

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

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 »