Skip to content

Instantly share code, notes, and snippets.

@imbdb
Created January 10, 2022 11:48
Show Gist options
  • Save imbdb/42a7eb9006b760357557fe4dfe5ab999 to your computer and use it in GitHub Desktop.
Save imbdb/42a7eb9006b760357557fe4dfe5ab999 to your computer and use it in GitHub Desktop.
Function to redirect page based on condition
function redirect(sentence){
if(sentence.contains('airport'){
window.location('/airport')
}
else{
window.location('/home')
}
}
// Test function
// redirect('goto airport')
// redirect('goto home')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment