Try this exercise. Click the correct answer from the options.
What will be the output of the following code block in JavaScript?
1let a = 10;
2let b = 36;
3let c = Math.sqrt(b) + a;
4console.log(c);
Click the option that best answers the question.
- 6
- 16
- 36
- 30