Creating variables inside $each confusion
Hello,
Im thinking I have a complete misunderstanding about something.Which is nothing unusual ...
If I'm creating variables inside an $each loop what happens in this example.
- $.each($arr, function (i, v) {
- var $xxx = i;
- var $yyy = v;
- do something ...
- });
Is there more than one $xxx and $yyy variable?