From 67105d1950f3eab9b3f7e3e510db4098f431044a Mon Sep 17 00:00:00 2001 From: Hifilo <92943726+Hifilo@users.noreply.github.com> Date: Mon, 16 Jan 2023 22:26:24 -0500 Subject: [PATCH] Update palindromes.js --- palindromes/palindromes.js | 1 - 1 file changed, 1 deletion(-) diff --git a/palindromes/palindromes.js b/palindromes/palindromes.js index 0fc16ae..2131658 100644 --- a/palindromes/palindromes.js +++ b/palindromes/palindromes.js @@ -7,7 +7,6 @@ //there are many ways of checking the solution for palindromes without using regex. Here is one. const palindromes = function (string) { - //there are many ways of checking the solution for palindromes without using regex. Here is one. let alphabet = 'abcdefghijklmnopqrstuvwxyz'; //create a variable that holds all the letters of the alphabet //Take the input string, convert to lowercase, split, reverse, & filter only letters, before rejoining them together as the constant cleanedString.