Answers for "javascript let and const"

5

what is the difference between let and const in javascript

The difference is that with const you can only only assign a value to a variable
once, but with let it allows you to reassign after it has been assigned.
Posted by: Guest on June-29-2020
-3

vars with let in it javascript

let /*Var name*/ = /*what is equals*/
Posted by: Guest on September-22-2020

Browse Popular Code Answers by Language