Q. What will be the output of the below code?
Code:
let chaval= (p)=>p+2; console.log(chaval(2));
β
Correct Answer: (A)
4
let chaval= (p)=>p+2; console.log(chaval(2));
You must be Logged in to update hint/solution