Question: What will be the output of the following code?var total=new Function("item","tax","return item+=tax");
document.write("Your bill is $"+total(14.43,06))
A
B
C
D
Syntax Error
B
$20.43
C
No output
D
14.4306
Note: This is function follows function constructor syntax:
var variable=new Function("arg1","arg2","retrun expression")