mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-05 01:26:18 +00:00
0cfef8affa
Preparatory to implementing saving changes to the server
14 lines
230 B
Plaintext
14 lines
230 B
Plaintext
title: SampleJavaScriptWithError
|
|
type: application/javascript
|
|
|
|
/*
|
|
This is an example JavaScript file
|
|
*/
|
|
function myFunction(param) {
|
|
if(=) { // An error
|
|
param = param/17;
|
|
}
|
|
return param * Math.PI; // Perform a calculation
|
|
}
|
|
|