Computer Science, asked by chaitanyashetty2020, 7 months ago

Write a Javascript program to declare 2 variables A and B. Store the string “Hello” in A and value 100 in B. Print both the values.

Answers

Answered by Imblank
3

Answer:

var a = "Hello";

var b = 100;

console.log(a+" "+b);

Read my bio

Similar questions