mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-29 05:13:56 -08:00
14 lines
274 B
Text
14 lines
274 B
Text
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
|
|
}
|
|
|