mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 10:59:57 +00:00
f838d6e3c1
More to come...
15 lines
274 B
Plaintext
15 lines
274 B
Plaintext
title: SampleJavaScriptTiddlerWithError
|
|
type: application/javascript
|
|
tags: demo
|
|
|
|
/*
|
|
This is an example JavaScript program that contains an error
|
|
*/
|
|
function myFunction(param) {
|
|
if(=) { // An error
|
|
param = param/17;
|
|
}
|
|
return param * Math.PI; // Perform a calculation
|
|
}
|
|
|