There are <select> c id = 'adresses'
When I load the page, I try to output to the console everything that exists in select using jquery with this construction
$('#adresses option').each( function() { console.log(this.text); }); And everything is displayed in the console.
But if I use this design
$('#adresses option').each( ()=> { console.log(this.text); }); Thousands of undefined
What is the difference?