Signup/Sign In
user profile picture

Randhi hari shanmukha venkata harshini

harshini21

Joined 3 years ago

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

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

output:30

this will print the value of c on console.
2 years ago