DEV Community

Abdullah-Al-Akash
Abdullah-Al-Akash

Posted on • Updated on

10 JavaScript Interview Question You should know

Alt Text

Top comments (1)

Collapse
 
abdullahalakash profile image
Abdullah-Al-Akash
  1. What is JavaScript?

JavaScript is a client-side and server-side scripting language inserted into HTML pages and is understood by web browsers. JavaScript is also an Object-based Programming language

  1. Enumerate the differences between Java and JavaScript?

Java is a complete programming language. In contrast, JavaScript is a coded program that can be introduced to HTML pages. These two languages are not at all inter-dependent and are designed for different intent. Java is an object-oriented programming (OOPS) or structured programming languages like C++ or C, whereas JavaScript is a client-side scripting language.

  1. What are JavaScript Data Types?

Following are the JavaScript Data types:

Number
String
Boolean
Object
Undefined

  1. What is the use of isNaN function?

isNan function returns true if the argument is not a number; otherwise, it is false.

  1. Which is faster between JavaScript and an ASP script?

JavaScript is faster. JavaScript is a client-side language,, and thus it does not need the assistance of the webserver to execute. On the other hand, ASP is a server-side language and hence is always slower than JavaScript. Javascript now is also a server-side language (nodejs).

  1. What is negative Infinity?

Negative Infinity is a number in JavaScript which can be derived by dividing negative number by zero.

  1. Is it possible to break JavaScript Code into several lines?

Breaking within a string statement can be done by using a backslash, '\,' at the end of the first line.

Example:

document. Write ("This is \a program,");
And if you change to a new line when not within a string statement, then javaScript ignores the break in the line.

Example:

var x=1, y=2,
z=
x+y;
The above code is perfectly fine, though not advisable as it hampers debugging.

  1. Which company developed JavaScript?

Netscape is the software company that developed JavaScript.

  1. 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 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.

  1. Write the code for adding new elements dynamically?

t1
<br> function addNode () { var newP = document. createElement(&quot;p&quot;); <br> var textNode = document.createTextNode(&quot; This is a new text node&quot;); <br> newP.appendChild(textNode); document.getElementById(&quot;firstP&quot;).appendChild(newP); } <br>

firstP

  1. 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 var keyword is omitted, a global variable is declared.

Example:

// Declare a global: globalVariable = "Test";

The problems faced by using global variables are the clash of variable names of local and global scope. Also, it is difficult to debug and test the code that relies on global variables.

  1. 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 number.

  1. What is 'this' keyword in JavaScript?

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

  1. 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, delay) function is used to start a timer that calls a particular function after the mentioned delay. The setInterval(function, delay) function repeatedly executes the given function in the mentioned delay and only halts when canceled. The clearInterval(id) function instructs the timer to stop.

Timers are operated within a single thread, and thus events might queue up, waiting to be executed.

  1. Which symbol is used for comments in Javascript?

// for Single line comments and

/* Multi

Line

Comment

*/