Hello Reader's
Sometimes you might have seen " var = +_" syntax in JS. So this line is as simple as assiging the variable to another, Where + is transfering the value of _ to var and _ is just the variable.
var _ = "D5200";
var newVar = +_;
Here _ is variale initialize by value 'D5200' and now newVar is assigned this value
0 Comment(s)