Gainsight Interview Question

Difference between let, var, const

Interview Answer

Anonymous

Aug 11, 2020

Var is Global scope, Let and const are local scope. const value can not be changed in the code, let can be...