Everything else on my page works perfectly. The alert(userinput.value); works perfectly... but the statements do not call the button. The code only returns the valid commands in the else statement.
function btn_go_click(){
var userinput = document.getElementById("txtcommand");
alert(userinput.value);
if (userinput.value === ("N" || "North")){
btn_North_click();
}else if (userinput.value === ("E" || "East")){
btn_East_click();
}else if (userinput.value === ("S" || "South")){
btn_South_click();
}else if (userinput.value === ("W" || "West")){
btn_West_click();
}else{
UpdateText ("Valid commands are \"n\", \"e\", \"s\", \"w\"");
}
}