Files
australis-theme-generator/language-examples/javascript.js

14 lines
295 B
JavaScript

// An exceptionally useful comment
function func(param) {
var text = 'string';
for (var i = 0; i < param.length; i++) {
text += i;
}
var number = 0;
var templateLiterals = `a ${text} b ${1 + 2} c`;
return {
"text": text,
"boolean": false
};
}