|
|
|
|
|
by bubblebeard
684 days ago
|
|
I have been using JS for more than 20 years, and I do not like it. There are parts of it I find useful, but I avoid using it as much as I can in any project. The biggest reason for this being that the execution of JS code it down to the browser rendering the page where it’s deployed. As such it’s practically impossible to get any code to run consistently. This is of course only relevant in my day to day work as a web dev. That aside, JS has some funny behavior. If you wish toninderstand JS better you could read up on how null and undefined works. You could also read up on how functions work, they are objects actually. |
|
Can you elaborate on this part? I would say one of the strengths of JS is that you can get it to run consistently just about anywhere.