Quick actions

cmd+k|ctrl+k

Navigation

Languages

dicoding.com - Function

Snippet info

Language

JavaScript

Visibility

public

Author

rzqbuchek

Created

2020-07-27T08:34:10Z

Updated

2020-07-27T08:34:44Z

function greeting(name, language) {
    if(language === "English") {
        console.log("Good Morning " + name + "!");
    } else if (language === "French") {
        console.log("Bonjour " + name + "!");
    } else {
        console.log("Selamat Pagi " + name + "!");
    }
}

greeting("Harry", "French");

/* output
Bonjour Harry!
*/
INFO