Aug 31, 2024
index.html
file and use basic HTML.<script>
element, best placed at the end of the body for performance reasons.index.js
) for separation of concerns.let
(modern best practice) or var
(older practice).const
, values cannot be changed.const
by default unless re-assignment is needed.