Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

What should i do

let a = 50;
let b = 35;
let c = a - b;
console.log(c)
after running it gave me my answer 15
when i tried submitting it told me to log in c on console
by

1 Answer

sam5epi0l
Please try adding a semicolon ; after logging.

Login / Signup to Answer the Question.