Interview Questions Flashcards
What is the DOM?
DOM stands for Document Object Model. It is a representation of the HTML document displayed in a window. Objects are organized in a hierarchy.
What is ECMAScript and how does it relate to JavaScript?
ECMA is a standardized specification for scripting languages; JavaScript is a scripting language based on ECMA specification.
What is JavaScript?
JavaScript is a programming/scripting language that allows you to implement complex logic on web pages;
JavaScript is lightweight and interpreted programming language. It is most commonly utilized by client-side technologies.
What are some advantages that can be gained through using JavaScript
Less server interaction - Allows for client-side validation of user-input, reducing the number of unsuccessful HTTP requests.
Increased Interactivity - The Document Object Model can be manipulated based on different events initiated by the user
What does it mean that JavaScript is loosely typed?
This means that JavaScript does not require you to specify a type when declaring a variable.
What does it mean that JavaScript is an interpreted language?
This means that JavaScript is not pre-compiled. It is read line by line by the browser.
What tag would you use to wrap around a block of JavaScript on an HTML document and where would you need to place it?
Use the tag to wrap the JavaScript statement, and make sure the block is nested within the body of the HTML document.
Is JavaScript case sensitive?
Yes
How do you insert a comment in JavaScript?
// - Single-Line comment /* * Multi-line comment */
Does Javascript have data types? If it does, what are they?
Yes, and they are Boolean, Null, Undefined, Number, String, Object, Symbol, and Function
What are three different ways you can create variables in Javascript and when would you use each?
var - scope of the variable is its current execution context
let - scope of the variable is limited to the block in which it is created
const - scope of const is similar to let statement, but once assigned a value, it cannot be changed
What are global variables? How are these variables declared and what are the problems associated with using them?
Global variables are those that are available throughout the length of the code.
Global variables are created when the variables are declared outside of any block
Global variables make it hard to debug and test code
What Javascript values are considered falsey? What are considered truthy?
Falsey Values:
- undefined
- null
- NaN
- false
- ” “(empty string)
- 0
everything else is truthy
What are undeclared and undefined variables?
Undeclared variables are those that do not exist in a program, and if called gives a “reference not found” error
Undefined variables are those that are declared but have not been initialized with a value, and if called gives a “undefined” error
What is === operator vs == operator?
== double equals will perform a type conversion; === triple equals will not perform a type conversion, and will return false if the types are different
What is the typeof operator?
an operator that returns a string indicating the type of the unevaluated operand
What is hoisting in Javascript?
a Javascript mechanism where variables and function declarations are moved to the top of their scope before code execution
What are anonymous functions?
Anonymous functions are functions that are dynamically declared at runtime. They are not given a name in the same way as normal functions
What is an IIFE?
an Immediately Invoked Function Expression that runs as soon as it is defined
How can you add new elements dynamically?
Using functions like document.createElement() and specifying a DOM tag. You can also use appendChild() on that element to add a Node beneath your newly created element
Explain how you can submit a form using Javascript?
To submit a form using Javascript use document.getElementById(“myform”).submit()
What is an event?
an event is an action that takes place on the DOM, like mouse click or tapping keyboard, etc
What are some common Javascript events?
onchange, onclick, onmouseover, onmouseout, onload, etc
What is an event listener?
Event listeners are procedures or functions that wait for an event to occur, method ex: addEventListener
What is JSON?
Javascript Object Notation. A safe and reliable data interchange format in Javascript, which is easy to understand for both users and machines
What is Ajax?
an abbreviation of Asynchronous Javascript and XML. Uses the XMLHttpRequest object to send and receive information with the server in formats up-to and including JSON, XML, HTML, and text files.
What are advantages of Ajax?
- Faster retrieval of data because its asynchronous
- Reduced Bandwidth usage and increased speed
- Improved User Experience
What are disadvantages of Ajax?
- Browser Incompatibility
- Ajax is dependent on Javascript. If there’s a Javascript problem with the browser, Ajax will not be supported
- slow and unreliable network connection
What is the for-in loop in Javascript?
this loop iterates over the enumerable properties of an object.
What is the for-of loop in Javascript?
this loop iterates over iterable objects, like Strings and Arrays
What is the use of isNaN function?
this function returns true if the argument is not a number otherwise it is false
What is negative infinity?
Negative Infinity is a number in Javascript which can be derived by dividing negative number by zero
What are of the rules that Javascript variables names must conform to?
Cannot delare a variable name that is a reserved Javascript keyword. Names must begin with a letter or an underscrore
Explain the working of timers in Javascript? Also discuss the drawbacks of using the timer, if any?
- Timers are used to execute a piece of code at a set time or also to repeat the code in a given interval of time. functions include setTimeout, setInterval, and clearInterval
- Timers are operated within a single thread, and thus events might queue up, waiting to be executed
What does JSON.parse() do?
it turns a Javascript string formatted as JSON into a Javascript object
What does JSON.stringify do?
To send a javascript object as a json, we need to turn it into a string.