Skip to content

Commit

Permalink
java script
Browse files Browse the repository at this point in the history
  • Loading branch information
raja8287 committed Nov 6, 2021
1 parent 822b7bf commit 864ffcf
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

console.log("ss")//for printing a value
const db=5
console.log(db)
let a=4;
console.log(a,"a before updation(let)")
a=3;
console.log(a," a after update(let) ")
var v=13
console.log(v," v before updation (var)")
v=12
console.log(v," v after updation(var)")

0 comments on commit 864ffcf

Please sign in to comment.