+ 1
Introduction to JavaScript solved
Spotting errors let name =“Ann” let age= 34; console.log(name); console.log(age);
2 Respuestas
+ 3
missing quotation marks around Ann as it is a text(a string data type) and strings should be enclosed in quotation marks.
Write it as "Ann". That will work fine.
+ 2
Oh just the quaton marks