Quick actions

cmd+k|ctrl+k

Navigation

Languages

function 1+ argumen

Snippet info

Language

JavaScript

Visibility

public

Author

ibank

Created

2020-09-04T02:13:34Z

Updated

2020-09-04T02:13:34Z

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");
INFO