just for my knowledge -
what happens if i have 2 equals JS files in my document :
<script src='A.js'>
and
<script src='B.js'>
A.js and B.js are equal content .
what happens if i run one func for example which resides in both files ?
which function will fire ? does in memory it has 2 functions ?
what about this situation :
<script src='A.js'>
and
<script src='A.js'>
does it even load it again ?
i need some clarification..