Welcome to mirror list, hosted at ThFree Co, Russian Federation.

f1.js « js « assets - github.com/gohugoio/netlify-test-site.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 66eacd87cc6f7770123abf29c5f66ee9c561a0ef (plain)
1
2
3
4
5
6
console.log(`This is ${getName()}`);
document.writeln('This is ' + getName());

function getName() {
	return 'f1';
}