What are the pop-up boxes available in JavaScript? Get link Facebook Twitter Pinterest Email Other Apps January 23, 2019 What are the pop-up boxes available in JavaScript? Alert Box Confirm Box Prompt Box Read more
Define closure ? Get link Facebook Twitter Pinterest Email Other Apps January 23, 2019 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(); Read more