Last active
March 20, 2018 01:32
-
-
Save Martinnord/3f5b1bcbda48f3c54753fd3e7e666e73 to your computer and use it in GitHub Desktop.
index.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Author: Martin Nordström | |
Created: 2018/03/09 | |
Keep coding! | |
*/ | |
// REVERSE A STRING CHALLENGE | |
// Return string in reverse | |
function reverseString(str) {} | |
// PALINDROME CHALLENGE | |
// Return true if palindrome and false if not | |
function isPalindrome(str) {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment