Home > Frontend Engineering and Javascript > Javascript Fundamentals > Initializing Variables and Basic Math Operations Show previous contentBuild your intuition. Fill in the missing part by typing it in.What will be the output of the following code block in JavaScript?JAVASCRIPT1var a = 8; 2var b = 12; 3var c = b * a + a; 4console.log(--c);Write the missing line below.SubmitReveal answer Show following content