1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-30 09:13:16 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/definitions/JavaScript.tid

16 lines
514 B
Plaintext
Raw Normal View History

2013-12-14 09:25:11 +00:00
created: 20130825142100000
modified: 20140211195324716
2014-09-11 14:52:47 +00:00
tags: Definitions
title: JavaScript
2013-12-14 09:25:11 +00:00
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.
2013-12-14 09:25:11 +00:00
~JavaScript looks like this:
2013-12-14 09:25:11 +00:00
```
function circleArea(radius) {
return radius * 2 * 3.141592653;
}
```