Are you sure you're getting this? Fill in the missing part by typing it in.
What will be the output of the following code block in JavaScript?
JAVASCRIPT
1var a = 8;
2var b = 12;
3var c = b * a + a;
4console.log(--c);
Write the missing line below.
What will be the output of the following code block in JavaScript?
1var a = 8;
2var b = 12;
3var c = b * a + a;
4console.log(--c);
Write the missing line below.