Why is let not recognised as a keyword in type conversion to string in javaScript?
Type conversion to string in javaScript apparently ignores let as a keyword. String(let) throws the error ReferenceError: let is not defined Whereas, String(var) throws the error SyntaxError: …