function count() {
var initial = 1;
function plus() {
console.log(++initial);
}
return plus();
}
var c = count();
c();
c();
When the mentor Mr. Arnav Gupta run the code his output showed up 2 and 3. But when I run the same code in Webstorm, It shows error. Please resolve the issue.
