You are on page 1of 1

javascript interview question

vuejs interview qs
front end developer interview qs
data structure and algo interview qs
Testing
Product Design
Architecture, SOA, Microservice, Micro Front End
Integration Continue
Preparation Anglais
Preparation Speech de Présentation en Anglais
Tech slice -->

JS Interview QS
diff between let and var
diff between == and ===

diff between function and arrow function


prototypal inheritance
diff function declaration and function expression(save in a variable)
promise, what is it? and why use it?
javascript closure
how to create a private variable in js?
difference between ViewState and SessionState
variable typing
Null in JS??
What is the difference between Attributes and Property?
getElementsByTagName??

NaN?
Bind?
apply and call https://odetocode.com/blogs/scott/archive/2007/07/04/function-apply-
and-function-call-in-javascript.aspx
scalability?
APS, ASP.NET ????

JS was created by Brendan Eich in 1995 at Netscape Communications

let extra = "Extra";


var greeter = function(name, age) {
let msg = name + " " + age + " year old";

return function greet() {


console.log(name,age,extra);
}
}

let james = greeter('James', 20);

console.dir(james);

https://javascript.info/bubbling-and-capturing

You might also like