Sascha Schulz
2023-04-18 709ecb07ccb2246858ed23f0140dcdfa0f76213e
add js functions example
1 Dateien hinzugefügt
13 ■■■■■ Geänderte Dateien
templates/007-js/functions.js 13 ●●●●● Patch | Ansicht | Raw | Blame | Historie
templates/007-js/functions.js
Neue Datei
@@ -0,0 +1,13 @@
function foo() {
    console.log("foo");
}
function bar(a) {
    return a;
}
foo();
const a = bar(1);
console.log(a);