JavaScript Interview Questions (Part3)
How do you add an element at the beginning of an array?
You can use array.unshift() to insert elements at the begining of an array.
How do you add an element at the end of an array?
You can use array.push() to insert elements at the end of an array.
Why extending array is bad idea?
The problem is the global scope . Changing the behaviour of an object that will only be used by your own code is fine. But when you change the behaviour of something that is also used by other code there is a risk you will break that other code. Possible porblems:- for..in might not work properly.
- Someone else might also want to extend Array with the same function name.
- It might not work properly in every browser.
How do you check if an object is an array or not?
Object.prototype.toString returns the value of the object's internal [[Class]] property. Every object has a toString() method that is automatically called when the object is to be represented as a text value or when an object is referred to in a manner in which a string is expected. By default, the toString()method is inherited by every object descended from Object. If this method is not overridden in a custom object,toString() returns '[object type]', where type is the object type.How to empty an array in JavaScript?
If you need to keep the original array because you have other references to it that should be updated too, you can clear it without creating a new array by setting its length to zero.
Can you assign an anonymous function to a variable?
Yes. You can assign JavaScript function to variables, which means you can assign anonymous JavaScript functions to variables.How can you get the type of arguments passed to a function?
You can use the typeOf function to get the type of arguments passed to a function.
What is the function of delete operator?
The JavaScript delete operator removes a property from an object; if no more references to the same property are held, it is eventually released automatically. This operator can also delete variables which are not declared with the var statement.Difference between private, public and static variable?
- Public variables can be accessed by all the members of the owner as well as other objects that can access the owner.
- Private variables can be accessed by all the members (functions and variables) of the owner object but not by any other object.
- Static variables are come into existence as soon as a class come into existence. It doesn't matter whether the class has any objects or not, static variables would be there.
What is differential inheritance?
JavaScript uses an inheritance model called "differential inheritance" . It is a common inheritance model used by prototype-based programming languages. What that means is that methods aren't copied from parent to child. Instead, children have an "invisible link" back to their parent object.How to Object.entries( ) In JavaScript ?
The entries() method returns an Array Iterator object with key/value pairs, in the same order as that provided by a for...in loop.
How would you compare two objects in JavaScript?
We're checking if a and b are strictly equal (meaning, "referring to exactly the same thing").
What is the use of blur function in JavaScript?
The blur() method is used to remove focus from an element.
What is NaN?
NaN is just a special value to return as a result of conversion to number instead of throwing an exception, if type conversion has failed.
How to set the cursor to wait in JavaScript?
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 pages in the web application.
How to enabled 'Strict' mode in JavaScript?
Strict Mode is a new feature in ECMAScript 5 that allows you to place a program, or a function, in a "strict" operating context. This strict context prevents certain actions from being taken and throws more exceptions.Just add "use strict"; at the top of your code, before anything else.
Is there automatic type conversion in JavaScript?
JavaScript is a loosely typed language. Whenever an operator or statement is expecting a particular data-type, it will automatically convert the data to that type.
exampleIn Javascript are calculations with fractional numbers guaranteed to be precise?
Calculations with fractional numbers are not guaranteed to be precise in Javascript.
Moreover, that depends on what kind of calculations you're doing.
- If you really need your results to add up exactly, especially when you work with money: use a special decimal datatype.
- If you just don't want to see all those extra decimal places: simply format your result rounded to a fixed number of decimal places when displaying it.
- If you have no decimal datatype available, an alternative is to work with integers, e.g. do money calculations entirely in cents. But this is more work and has some drawbacks.
What will happen if an infinite while loop is run in Javascript?
Your computer most likely locked up because the infinite loop made the browser you were using unstable.
What is unshift method in JavaScript?
The unshift() method adds new items to the beginning of an array and returns the new length of the array.
- JavaScript Interview Questions (Part2)
- Is JavaScript a true OOP language?
- Advantages and Disadvantages of JavaScript
- Difference Between JavaScript and ECMAScript?
- What is noscript tag?
- Escaping Special Characters in JavaScript
- What is undefined x 1 in JavaScript?
- JavaScript : Logical Operators
- Difference between '=', '==' and '===' operators?
- How to reload a page using JavaScript?
- How to write html code dynamically using JavaScript?
- How to add html elements dynamically with JavaScript?
- How to load another html page from javascript?
- What Is The Disadvantages Using InnerHTML In JavaScript?
- What is Browser Object Model
- How to detect the OS on the client machine in JavaScript?
- Difference between window, document, and screen in Javascript?
- Difference between the substr() and substring() in JavaScript?
- How to replace all occurrences of a string in JavaScript?
- How to test a string as a literal and as an object ?
- What is Associative Array? How do we use it?
- What is an anonymous function in JavaScript?
- What is the use of 'bind' method in JavaScript?
- Pure functions Vs. Impure functions in javascript
- Is Javascript a Functional Programming Language?
- What's the Difference Between Class and Prototypal Inheritance?
- Javascript, Pass by Value or Pass by Reference?
- How to prevent modification of an object in Javascript?
- What is 'this' keyword in JavaScript?
- How Does Function Hoisting Work in JavaScript?
- What do mean by NULL in Javascript?
- What does the delete operator do in JavaScript?
- What is the Infinity property used for in Javascript?
- Event bubbling and Event Capturing in JavScript?
- What is "strict mode" and how is it used in JavaScript?
- What is the difference between .call() and .apply()?
- Entire content of a JavaScript source file in a function block?
- What is an immediately-invoked function expression?
- What is escape & unescape String functions in JavaScript?
- What is the instanceof operator in JavaScript?
- What Are RESTful (REpresentational State Transfer)Web Services?
- What is Unobtrusive JavaScript & Why it's Important?
- What Does JavaScript Void(0) Mean?
- What are JavaScript Cookies?
- Difference between Client side JavaScript and Server side JavaScript
- TypeError: document.getelementbyid(...) is null
- Uncaught TypeError: Cannot read property of undefined In JavaScript
- What's the difference between Null and Undefined?