Przykład kodu

Oto przykład funkcji w JavaScript:

function greet(name) {
    console.log(`Cześć, ${name}!`);
}
 
greet('Świecie');