Friday, May 5, 2017

JavaScript Hello World 1

Now, we learn about JavaScript for first time. The lesson will be important for your foundation to develop any website program, understanding to basic structure of JavaScript program, and may for mobile developer.
Write these following code to your any text editor on computer. You can only write in free inside document.write function, between double quotes. Or in other words mean you can change hello world for free.
Example:
<script language="javascript">
document.write("hello world"):
</script>
Output:
There will be text hello world inside your browser page.

No comments:

Post a Comment