1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-11-23 18:17:20 +00:00

Docs update

This commit is contained in:
Jermolene 2013-12-14 09:25:11 +00:00
parent c190b0f1ea
commit 053e09af6e

View File

@ -1,6 +1,15 @@
created: 201308251421
modified: 201308251421
created: 20130825142100000
modified: 20131214090859260
tags: definitions
title: JavaScript
type: text/vnd.tiddlywiki
JavaScript is a computer language originally introduced by browsers as the standard scripting language for the web. It has since been recognised as a powerful language in its own right, and has been adopted widely beyond the browser.
JavaScript is a computer language that was originally introduced by browsers as a way of scripting web pages. At first it was considered a poorly designed toy, but over the years has become recognised as a powerful language in its own right, and has been adopted widely beyond the browser.
JavaScript looks like this:
```
function circleArea(radius) {
return radius * 2 * 3.141592653;
}
```