DEV Community

Siddharth Kanojiya
Siddharth Kanojiya

Posted on

{#2}Variables in JavaScript | JavaScript

console.log("This repl contains code for the JavaScript ")
var a = 67 // a contains 67
console.log(a)
a = "Sage"
console.log(a)
let 8Sage = 7 // Not allowed this will throw an error
// let var = 7

Top comments (0)