Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

Finding palindrome using for loop

let word = "CivIc";
let str = word.toLowerCase();

function checkPalindrome(str) {
  // find the length of the string
  const len = str.length;
  // loop through half of the string
  for (let i = 0; i < len / 2; i++) {
    // check each position
    // between the first and the last character
    if (str[i] !== str[len - 1 - i]) {
      console.log("NOT a palindrome");
    }
  }
  console.log("The string is a palindrome");
}
Comment

PREVIOUS NEXT
Code Example
::  
::  
Javascript ::  
::  
Javascript ::  
::  
::  
::  
Javascript ::  
::  
::  
Javascript ::  
Javascript ::  
::  
::  
Javascript ::  
Javascript ::  
:: Clean way to remove text and keep div inside a div jquery 
::  
Javascript ::  
:: nodelist example 
::  
Javascript :: how to make a string in javascript 
::  
:: how to add dropdown with filter in angular material 
:: first name last name concatenate javascript with ternary operator 
::  
Javascript ::  
::  
::  
ADD CONTENT
Topic
Content
Source link
Name
9+7 =