Javascript What’s the difference between using “let” and “var” in JavaScript? By Sudhanshu Bajaj on Friday, May 17, 2019 In simple terms var is function scoped and let is block scoped.