A+ A-

what is javascript - javascript tutorial for beginners

Javascript tutorial - learn javascript :

Javascript is a interpreted language with a C like syntax. Whereas most people brush the js language off as nothing more than a browser scripting language, it literally supports many advanced concepts which include object oriented programing, recursion, lambda, and closures. It's really a very approachable language for the learner that quickly scales to be as powerful a tool as your skills allow.

To dive into Java script all you need is a simple text editor and a browser. In windows, you can use notepad under your accessories and Linux and mac users have a similar editor. Simply create a blank HTML page for example …

[code type="HTML"]
<html>
<head>
<title>Learning Javascript</title>
</head>
<body>
<p>Hello World!
</body>
</html>
[/code]

Save the file then open in your internet browser you just created to see the results .Javascript code is interpreted so any changes you make to this file will show up straight away in the browser the moment you hit the reload button.

Javascript is a interpreted language with a C like syntax. Whereas most people brush the js language off as nothing more than a browser scripting language, it literally supports many advanced concepts which include object oriented programing, recursion, lambda, and closures.