Dashboard
Repositories
filestore
Aktivität
Suche
Login
public
/
web-development/examples
Web Development Examples
Übersicht
Reflog
Commits
Dateibaum
Dokumentation
Forks
Vergleichen
Blame
|
Historie
|
Raw
change example for viewport, add examples for css units and css flexbox
Sascha Schulz
2023-09-12
3746a867f82bc09b1240b54370b3608677f779bc
[public/web-development/examples.git]
/
templates
/
007-js
/
functions-1.js
1
2
3
4
5
6
7
8
9
10
11
12
13
function foo() {
console.log("foo");
}
function bar(a) {
return a;
}
foo();
const a = bar(1);
console.log(a);