InterviewSolution
Saved Bookmarks
| 1. |
Write a program to assign the values to two variables and print the product of those numbers |
|
Answer» LET one; let two; function twoVar(val){ one = val; two = val; return "Both variables value is set to: " + val } |
|