Posts

Showing posts from January, 2019

What are the pop-up boxes available in JavaScript?

What are the pop-up boxes available in JavaScript? Alert Box Confirm Box Prompt Box

Define closure ?

Define closure. In JavaScript, we need closures when a variable which is defined outside the scope in reference is accessed from some inner scope. var  num  =  10 ;   function sum()    {   document.writeln(num+num);   }    sum();