1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-18 11:29:55 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/definitions/JavaScript.tid
2014-09-11 15:52:47 +01:00

16 lines
514 B
Plaintext

created: 20130825142100000
modified: 20140211195324716
tags: Definitions
title: JavaScript
type: text/vnd.tiddlywiki
~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;
}
```