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