Skip to content

Instantly share code, notes, and snippets.

@KushalRaj
Created February 8, 2017 07:12
Show Gist options
  • Save KushalRaj/ae98b38c18d382c686860822dc9d0e3d to your computer and use it in GitHub Desktop.
Save KushalRaj/ae98b38c18d382c686860822dc9d0e3d to your computer and use it in GitHub Desktop.
function checkTense(word) {
return word.toLowerCase().substr(word.length - 2) === "ed" ? "Past" : "Present";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment