I am asking this question with respect to the following examples of code:
const celciusInput = document.querySelector('#celcius > input');
const fahrenheitInput = document.querySelector('#fahrenheit > input');
const kelvinInput = document.querySelector('#kelvin > input');
Another example:
<input type="radio" name="rate" value="Very poor"> Very poor
<input type="radio" name="rate" value="Poor"> Poor
<input type="radio" name="rate" value="OK"> OK
<input type="radio" name="rate" value="Good"> Good
<input type="radio" name="rate" value="Very Good"> Very Good
I have a hunch that the ">" operator in this context would cause JavaScript to extract some sort of data based on the defined class/id/etc. However, I am not sure if there is a name for the ">" operator in this context and what does it do exactly?