Pls i dont understand why my sololearn app fail to run any variable i declare using LET.... It always gives me an error reading | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Pls i dont understand why my sololearn app fail to run any variable i declare using LET.... It always gives me an error reading

let name = 'David'; let msg = 'Welcome ' + name + '!'; console.log(msg); Even something as simple as this

6th Dec 2019, 7:43 AM
Prie St
Prie St - avatar
6 Answers
+ 1
Show your code. btw JS is case sensitive , you need to use keyword `let` not `LET` edit: Oreva Lyt thanks for including code, I see no errors ,it's working. share a screenshot of errors or warnings that you are getting.
6th Dec 2019, 7:46 AM
🇮🇳Omkar🕉
🇮🇳Omkar🕉 - avatar
+ 1
Pls check my new post I couldnt share the screenshot on this one
6th Dec 2019, 8:22 AM
Prie St
Prie St - avatar
+ 1
Oreva Lyt , That's weird.Never faced this issue. I think you are using an old device. According to a mail I received from SL "web codes run on users device not on SL servers" // maybe php is still running on servers. So I assume that it uses Android WebView. I'm not sure though. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/let According to MDN documentation `let` is not supported for version 41 to 49 and a note is given about using strict mode. So hopefully, try enabling strict mode by writting "use strict" in beginning of script. Or try to update webview from play store (in case you are android user) I'm still not sure if this is reason of issue and strict mode or updating webview will solve problem but try to do. https://code.sololearn.com/W8HDVWsfwzN4/?ref=app
6th Dec 2019, 8:50 AM
🇮🇳Omkar🕉
🇮🇳Omkar🕉 - avatar
+ 1
Ok thanks i try the solutions you gave
6th Dec 2019, 8:52 AM
Prie St
Prie St - avatar
0
Oreva Lyt Can you please recheck this code? https://code.sololearn.com/W8HDVWsfwzN4/?ref=app If it keeps giving you errors please consider reinstalling app. If issue doesn't get solved try to contact SL team via info@gmail.com
6th Dec 2019, 8:30 AM
🇮🇳Omkar🕉
🇮🇳Omkar🕉 - avatar
0
Same result But when i change it to var it runs well
6th Dec 2019, 8:32 AM
Prie St
Prie St - avatar