[Javascript2] clarification on code differences from tutorial

This commit is contained in:
Nicola Clark 2025-04-06 22:42:08 -05:00
parent 68b852421f
commit d681163769
Signed by: nicola
GPG Key ID: BEF8036296D094BF

View File

@ -9,6 +9,9 @@ Adapted from https://javascript30.com - Sorting band names without articles
Changes: Changes:
* moved CSS + JS to external files * moved CSS + JS to external files
* [HTML] changed favicon * [HTML] changed favicon
* [JS] … a lot.
I tried to complete the challenge before watching the rest of the video (as
suggested) and I fear that I may have massively overcomplicated the matter.
--> -->
<!-- <!--
New elements: New elements:
@ -17,6 +20,7 @@ New JS:
* JSDoc - I missed having type-based completions in VScode from TypeScript * JSDoc - I missed having type-based completions in VScode from TypeScript
* Creating a DOM element - not really new, I just forgot how to and had to * Creating a DOM element - not really new, I just forgot how to and had to
double-check on W3Schools double-check on W3Schools
* Learned about the ability to pass a function to the Array.sort() method
--> -->
<html lang="en"> <html lang="en">
<head> <head>