JavaScript Quick Notebook Summary – Part 2
Strict Mode In JavaScript, there is two modes you can initiate for the file: Default/Non-Strict Mode and Strict Mode. Default/Non-Strict Mode is unofficially referred to as “Sloppy Mode”, because Strict…
Strict Mode In JavaScript, there is two modes you can initiate for the file: Default/Non-Strict Mode and Strict Mode. Default/Non-Strict Mode is unofficially referred to as “Sloppy Mode”, because Strict…
Fundamentals To import a Javascrpt (JS) file into an HTML file, you use the following in the <head> section: <script src="(the file name).js"></script> The Var, the Let, and the Const…