كيف تكتب كود javascript ؟

هناك عدة طرق لكتابة كود الجافا سكربت -كتابة الكود في ال head <html> <head> <script type="text/javascript"> function sayWelcome(){ alert("welcome to our website") } </script> </head> <body> <button onclick="sayWelcome()"> hi</button> </body> </html> -كتابة الكود في ال body <html> <head> </head> <body> <script type="text/javascript"> document.write("welcome to our website") </script> </body> </html> -كتابة الكود في ملف خارجي سواء كان في head او body <script type ="text/javascript"> كتب بواسطة: عمر عمرو