You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is generally considered good practice to avoid using innerHtml ever.
Use of innerHtml can amke your sit vulnerable to hacking, and it is far less performant than using appendChild.
I would heavily recommend that you alter the code on line 31 of script.js to remove the use of innerHtml and change it to use something like appendChild.
The text was updated successfully, but these errors were encountered:
It is generally considered good practice to avoid using
innerHtml
ever.Use of
innerHtml
can amke your sit vulnerable to hacking, and it is far less performant than using appendChild.I would heavily recommend that you alter the code on line 31 of script.js to remove the use of innerHtml and change it to use something like
appendChild
.The text was updated successfully, but these errors were encountered: