JavaScript Interview Checklist (Basics)
Are you preparing for your next interview? Go through this and you are ready to go crack that interview.
✔️ var, let and const
❓ Difference between var, let and const
❓ Sample Code
var a = 1
var a = 2
let b = 1
let b = 2
const c = 1
const c = 2
con...
abhisheksunil.hashnode.dev4 min read