1.

Write a program to assign the values to two variables and print the product of those numbers​

Answer»

ANSWER:

JAVASCRIPT:

LET one;

let two;

function twoVar(val){

one = val;

two = val;

return "Both variables value is set to: " + val

}



Discussion

No Comment Found