Skip to content

IT Notes

IT Notes

  • Home
  • Privacy Policy
  • Sample Page
    • Home
    • 2023
    • Page 46
Javascript Interview Questions

What is === operator?

=== is called a strict equality operator, which returns true when the two operands have the same value without conversion.

Javascript Interview Questions

What is the difference between ViewState and SessionState?

‘ViewState’ is specific to a page in a session. ‘SessionState’ is specific to user-specific data that can be accessed across all web application pages.

Javascript Interview Questions

Which symbol is used for comments in Javascript?

// for Single line comments and /* Multi Line Comment */

Javascript Interview Questions

What is the working of timers in JavaScript?

Timers are used to execute a piece of code at a set time or repeat the code in a given interval. This is done by using the functions setTimeout, setInterval, and clearInterval. The setTimeout(function,…

Javascript Interview Questions

What is ‘this’ keyword in JavaScript?

‘This’ keyword refers to the object from where it was called.

Javascript Interview Questions

What is a prompt box?

A prompt box is a box that allows the user to enter input by providing a text box. A label and box will be provided to enter the text or…

Javascript Interview Questions

What are global variables? How are these variable declared?

Global variables are available throughout the length of the code so that it has no scope. The var keyword is used to declare a local variable or object. If the…

Javascript Interview Questions

Write the code for adding new elements dynamically?

<html> <head> <title>t1</title> <script type="text/javascript"> function addNode () { var newP = document. createElement("p"); var textNode = document.createTextNode(" This is a new text node"); newP.appendChild(textNode); document.getElementById("firstP").appendChild(newP); } </script> </head> <body>…

Javascript Interview Questions

What are undeclared and undefined variables?

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…

Javascript Interview Questions

Which company developed JavaScript?

Netscape is the software company that developed JavaScript.

Posts navigation

1 … 45 46 47 … 92

« Previous Page — Next Page »

Recent Posts

  • What is php artisan tinker?
  • What is the use of php artisan make:command?
  • What is Laravel Envoy?
  • What is Broadcasting in Laravel?
  • What is Laravel Echo?

Recent Comments

No comments to show.

Archives

  • July 2025
  • June 2025
  • November 2024
  • August 2024
  • July 2024
  • April 2024
  • September 2023
  • May 2023

Categories

  • Android Interview Questions
  • Angular JS interview Questions
  • C Programming
  • C Programs
  • C++ Programming
  • Codeigniter Interview Questions
  • Computer Network
  • CSS Interview Questions
  • HTML Interview Questions
  • Java
  • Java Interview Questions
  • Javascript Interview Questions
  • jQuery interview Questions
  • Laravel Interview Questions
  • Mobile Application Development
  • MySQL Interview Questions
  • PHP
  • PHP Interview Questions
  • Python
  • Python Interview Questions
  • React JS Interview Questions
  • Software Engineering
  • System Analysis and Design (SAAD)
  • Uncategorized
  • Vtiger CRM

You Missed

Laravel Interview Questions

What is php artisan tinker?

Laravel Interview Questions

What is the use of php artisan make:command?

Laravel Interview Questions

What is Laravel Envoy?

Laravel Interview Questions

What is Broadcasting in Laravel?

IT Notes

Copyright © All rights reserved | Blogus by Themeansar.