Learnerslesson
   JAVA   
  SPRING  
  SPRINGBOOT  
 HIBERNATE 
  HADOOP  
   HIVE   
   ALGORITHMS   
   PYTHON   
   GO   
   KOTLIN   
   C#   
   RUBY   
   C++   
   HTML   
   CSS   
   JAVA SCRIPT   
   JQUERY   




JAVASCRIPT - EDITORS


To run JavaScript Programs in you PC, you do not need to install JavaScript. As JavaScript runs in web browsers(i.e. Chrome, firefox, safari, IE e.t.c.)


Running a Go Program in Windows OS


Let us write a Program that will print Hello World.

  1. The first thing we will do is open Notepad in Windows OS.
    Java-Script-Editors

  2. Once Notepad is opened. You can type the lines of code there.

    And now, since we are trying to print Hello World. Type the below lines.

    <html>
    	<body>
    		<script language = "javascript" type = "text/javascript">
    			document.write("Hello World")
    		</script>
    	</body>
    </html>

    Java-Script-Editors

  3. Then save with .htm extension. Say FirstProgram.htm.
    Java-Script-Editors

  4. Then open the file in any of the web browser.
    Java-Script-Editors

And we are done.


Running a Go Program in MAC OS


Let us write a Program that will print Hello World.

  1. The first thing we will do is open TextEdit in MAC.
    Java-Script-Editors

  2. Once TextEdit is opened. You can type the lines of code there.

    And now, since we are trying to print Hello World. Type the below lines.

    <html>
    	<body>
    		<script language = "javascript" type = "text/javascript">
    			document.write("Hello World")
    		</script>
    	</body>
    </html>

  3. Then save with .htm extension. Say FirstProgram.htm.
    Java-Script-Editors

  4. Then open the file in any of the web browser.
    Java-Script-Editors

And we are done.