JavaScript

JavaScript is the scripting language of the Web.

All modern HTML pages are using JavaScript to add functionality,
validate input, communicate with web servers, and much more.

JavaScript is easy to learn. You will enjoy it.

<script>

function displayDate()

{
alert( “Date : ” + Date() );
}
</script>
<button type=”button” onclick=”displayDate()”>Display Date</button>

JavaScript (JS) is an interpreted computer programming language. As part of web browsers, implementations allow client-side scripts to interact with the user, control the browser, communicate asynchronously, and alter the document content that is displayed. It has also become common in server-side programming, game development and the creation of desktop applications.
JavaScript is a prototype-based scripting language with dynamic typing and has first-class functions. Its syntax was influenced by C. JavaScript copies many names and naming conventions from Java, but the two languages are otherwise unrelated and have very different semantics. The key design principles within JavaScript are taken from the Self and Scheme programming languages. It is a multi-paradigm language, supporting object-oriented, imperative, and functional programming styles.

JsFiddle

jsFiddle is a free code-sharing tool that allows you to edit, share, execute and debug Web code within a browser.

@jsfiddle
The Web Is Your Playground
Worldwide · jsfiddle.net

My Fiddles: http://jsfiddle.net/user/austinnoronha/fiddles/

AngularJs

AngularJS — Superheroic JavaScript MVW Framework
angularjs.org

Leave a comment