Files
australis-theme-generator/language-examples/javascript.js
2017-01-29 23:24:59 -08:00

15 lines
318 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,
"number": 231
};
}