D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
hungvietdo
Full window
Github gist
selfcall
Built with
blockbuilder.org
<!DOCTYPE html> <html> <body> <script type="text/javascript"> var abc = 1234; </script> <!-- First anonymous function called--> <script type="text/javascript" src="selfcall.js"></script> <script type="text/javascript"> var abc = 5678; </script> <!-- Second anonymous function called--> <script type="text/javascript" src="selfcall.js"></script> </body> </html>