Gainsight interview question

Difference between let, var, const

Interview Answer

Anonymous

11 Aug 2020

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