top of page

JavaScript : Embedding JS Code



You can embed JS code directly into your web pages by placing them between <script> and </script> tags. The <script> tag indicates to the browser that the contained statement or statements should be interpreted as an executable script and not as HTML.


JavaScript : Embedding JS Code - Creative Bloke
Embedding JS Code

<> कोड उदाहरण :


The JavaScript code in the above example will only output a text message to the web page. You will learn more about the output in the next tutorials.





Comentarios


bottom of page