The following code takes an array of numbers and creates a new array containing the square roots of the numbers in the first array.
The following code takes an array of objects and creates a new array containing the newly reformatted objects.
The following code shows how map works when a function requiring one argument is used with it. The argument will automatically be assigned from each element of the array as map loops through the original array.
This example shows how to use map on a String to get an array of bytes in the ASCII encoding representing the character values:
https://www.browserling.com/tools/text-to-ascii
This example shows how to iterate through a collection of objects collected by querySelectorAll. This is because querySelectorAll returns a NodeList (which is a collection of objects). In this case, we return all the selected options' values on the screen: I could not really get this to show anything in the Console
Having not gotten the example above to work - researched another example: https://education.launchcode.org/intro-to-professional-web-dev/appendices/dom-method-examples/queryselector-examples.html Where the querySelectorAll uses a CSS selector pattern and CSS selector rules to find a matching element. Returns the FIRST matching element. If NO match is found, null is returned.
When the index of an array is undefined nothing is returned: