Basic Programs

 Program to print "hi"

console.log("hy")

Output:






Program to declare a variable:

let a = 10
console.log(a)

Output: 








program to show what dynamic is:

let a = 10 // declaring variable but not it's type
console.log(a)
a= "vishal"
console.log(a)

Output:


























No comments:

Post a Comment

 hi I'm Vishal Rana