Answers for "how to declare variable in js"

2

variables in js

var Hello = "World";
let bool = false;
const int = 8788;
Posted by: Guest on December-17-2020
0

javascript variable declaration

var name = "mamama";
document.write(name);
// Outputs "mamama"
Posted by: Guest on January-15-2021

Code answers related to "how to declare variable in js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language