Front-end Interview Questions
Closures
A Closure is a feature whare an inner func has access to the outer func variale
function outerFunction(outerVariable){ return function innerFunction(innerVariable){ console.log('Outer Variable:' +outerVariable); console.log('inner Variable:'...
abhishek-dandriyal.hashnode.dev4 min read