1.

function lfc(myname){
console.log(10+"lfc" +12);
}
res=lfc(10);
console.log(res); //line 5
2.Consider the JavaScript code:Choose the correct code to be inserted at line 4 in order to invoke the function.

A. thisfun(10)
B. lfc(10)
C. function thisfun(10)
D. None of the above
Answer» B. lfc(10)


Discussion

No Comment Found