Q. Consider the JavaScript code:
Choose the correct code to be inserted at line 4 in order to invoke the function.
Code:
thisfun=function lfc(x){
console.log(x*x);
}
// line 4
β
Correct Answer: (A)
thisfun(10)