JSFiddle

Marc's public fiddles

  • 4n6sbpcg

    jQuery (edge), HTML, CSS, JavaScript

  • Check for Palindromes

    Return true if the given string is a palindrome. Otherwise, return false. A palindrome is a word or sentence that's spelled the same way both forward and backward, ignoring punctuation, case, and spacing. Note You'll need to remove all non-alphanumeric characters (punctuation, spaces and symbols) and turn everything lower case in order to check for palindromes.

  • Factorialize a Number

    Return the factorial of the provided integer. If the integer is represented with the letter n, a factorial is the product of all positive integers less than or equal to n. Factorials are often represented with the shorthand notation n! For example: 5! = 1 * 2 * 3 * 4 * 5 = 120

  • Reverse a String

    Reverse the provided string. You may need to turn the string into an array before you can reverse it. Your result must be a string.