I was trying just if/else in google app script. The following code should give "arun" as output, but its showing "prakash" . What's wrong with my code?
function doGet(request){
if(request.queryString=="arun"){
return HtmlService.createHtmlOutput("arun");
}else{
return HtmlService.createHtmlOutput("prakash");
}
}