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

How do l write value no console

let a =10;
let b = 20;
let c = a + b
console.log();
by

1 Answer

harshini21
let a =10;
let b = 20;
let c = a + b
console.log(c);

output:30

this will print the value of c on console.

Login / Signup to Answer the Question.