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

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

function getName() {
	return 'f3';
}