#20 - Check if Given String is Palindrome or not ? DS & Algorithms Course 🔥

preview_player
Показать описание
In this video , will learn How do you check if a given string is a palindrome using JavaScript.

Aao_Sikhe_Javascript (DS & Algorithms Course ) Video Course will be 100% free and will be released on Youtube. The playlist will be updated with new JavaScript tutorial videos every week. The plan is to cover all the important concepts of DS & Algorithms.

Aao_Sikhe_Javascript Course videos will also focus on things that are asked in the interviews. So if you're preparing for a Frontend Developer Interview or Web Developer Interview. This will be the best place to get a good grasp of JS internals.

00:00 - Don't skip anything (Introduction ) 🙏

➖➖➖➖➖➖➖➖➖➖➖➖➖
Family ❤
Our Family - 108000
Like Aim – 1000
Subscribers Aim- 200,000

Subscribe to stay tuned to more fun and informative content, consider liking the video in order to vouch for quality 🤗!!
Technical Suneja Shorts⭐

⭐ My Telegram Group Link:

⭐ What is CI/CD? 🤔

⭐ My Recent Interview Experience on Javascript

⭐ Front End Interview Series (Modern JavaScript ES6 Tutorial by Technical Suneja )

⭐ Free Resouces
2) ES6 full course ►
3) Git and GitHub Training - Zero to Hero ►
4) ReactJS Tutorial for Beginners to Advanced ►

⭐ Want Webhosting service ?
If you are planning to host your website in a very decent amount you can contact us on the given numbers.
Contact Details :
1. +91-9990131528
2. +91-8529119425

I believe that this vlog will help you to understand better in terms of career growth.

Put your comments and share your experience with us if you like this vlog. Also if you have some suggestions then please suggest them in the comment box.

⭐ Support vs Development Jobs? Projects? What to choose

⭐ Latest IT Vlogs :

⭐ Wednesday Episodes By Technical Suneja

⭐ Coding Stuff :

⭐ ReactJS Tutorial For Beginners. :

⭐ CTC v/s IN HAND SALARY | Huge Packages Explained🤔 GOOGLE, MICROSOFT, Facebook! 🔥

⭐ Top 5 Programming languages for 2021

⭐ Best Top 5 Frontend Frameworks of 2021 for Web Development

⭐ 10 Generic steps to becoming Javascript Developer | Frontend & Backend Both🔥

⭐ Best LinkedIn Tips for Job seekers in 2021 - Proper Utilisation of LinkedIn 🔥

⭐ My Thoughts on Web Development & Mobile App Development - Which is better?

⭐ Competitive Programming vs Software Development – Where Should I Invest My Time? 🔥

⭐ My Thoughts on Mean Stack Developer - Are you looking for a FullStack Developer?🔥

⭐ My Thoughts on Full Stack Developer - Perfect Path 🔥🔥

technicalsunejaji,ajay suneja,technical suneja,
check string is palindrome or not in javascript,javascript program to check palindrome string,javascript code to check palindrome,check if number is palindrome javascript,junior developer central,javascript palindrome program,palindrome checker javascript,javascript palindrome,javascript,palindrome,javascript tutorial,programming,coding,code,learn javascript,tutorial,learn to code,freecodecamp palindrome,javascript tutorials,js tutorial,javascript palindrome checker
learn javascript for beginners,
javascript basics,
javascript course,
javascript crash course,
javascript programming,
learn javascript,
learning javascript,
programming tutorial,
js tutorial,
javascript,
javascript tutorial for beginners,
javascript tutorials,
javascript beginners,
java script tutorial,
javascript 2021,
javascript lesson,
web development,
mosh hamedani,
front end,
javascript functions,

#Aao_Sikhe_Javascript #TechnicalSuneja
Рекомендации по теме
Комментарии
Автор

Support this video series, not by money, but by sharing it with your friend's circle 🙏

TechnicalSuneja
Автор

Sir mera placement ho gya Mern stack profile par😍😍6 Lakh PA as fresher

Amit-nrcu
Автор

sir we need more videos like this please continue making DSA using Javascript and competitive programming questions also by using Javascript

GauravKumar-ffqu
Автор

Thank you so much for making this series.❤

biju
Автор

let str1= "noon";
let str2= " ";
for (let i =str1.length-1; i>0; i--){
str2=str2+str1[i];
}
if (str1===str2){
Console.log("true");
} Else {
Console.log("falae");
}

Hello sir DSA par or videos laeye please bahut achha lagta hai aapka samjhane ka tarika bahut achha hai 👍👍👍👍❤️❤️❤️

royalsinghrajpoot
Автор

Sir aap ne simple language mai bhi achaa samjayaa hai tnq so much sir❤

sr_.
Автор

Sir, we need more videos like this please continue making DSA using Javascript

arjitchaudhary
Автор

<script>
var str = "racecar";
var str1 = "";
for(var i=str.length-1; i>=0 ; i--)
{

str1 += str[i];
}
if(str == str1)
{
console.log("yes")

}else {
console.log("no")

}
</script>

sayyadmukhim
Автор

I guess it would be more easy if we use for loop instead of using while loop in the second method:
let num = prompt("Enter a number");
let splitted = num.split(", ");
for(let i = 0; i < num.length; i++){
for(let j = num.length - 1; j > 0; j--){
if(num[i] === num[j]){
console.log("Yess Its a palindrome")
}else{
console.log("Noo")
}
break
}
break
}

Taanishkk
Автор

Logic- run a loop from reverse side and compare with original string.

devrajdpk
Автор

Hi sir, I really enjoying this DSA tutorials please add on more on athis series...

girishpandey
Автор

This dsa course is superb please ise isme kam se kam 100 video bna do

mrh
Автор

String str="mom";
var list =
var collect =


bhaiya i try to code in java

sawankumar
Автор

function palindrome(string) {
// let arrayValue =
// if(arrayValue == parm){
// return 'its a Palindrome'
// }else{
// return " its not palindrome"
// }

const len = string.length;

for (let i = 0; i < len / 2; i++) {
if (string[i] !== string[len - 1 - i]) {
return 'It is not a palindrome';
}
}
return 'It is a palindrome';
}

const result = palindrome('noon');
console.log('result', result);

shubhamvishwakarma
join shbcf.ru