Skip to content

Instantly share code, notes, and snippets.

@cmarkle27
Created October 20, 2013 19:52
Show Gist options
  • Save cmarkle27/7074438 to your computer and use it in GitHub Desktop.
Save cmarkle27/7074438 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
</body>
</html>
function isPal(phrase) {
return phrase.split("").reverse().join("") === phrase;
}
document.writeln(isPal("hello"));
document.writeln(isPal("racecar"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment