Onload vs Invoke in JavaScript
Todays burning question is what is difference between invoking and onloading 1. Example invoking sololearn(); function sololearn (){ Alert("Cool'); } 2. Example Onload <body onload="sololearn ()"> <script> sololearn(){ Alert("cool"); } </script> </body>