Quick actions

cmd+k|ctrl+k

Navigation

Languages

123 - Function

Snippet info

Language

JavaScript

Visibility

public

Author

royyannetflix354

Created

2020-08-02T08:38:45Z

Updated

2020-08-02T08:38:45Z

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