Mid Level Developer React Coding Challenge

preview_player
Показать описание
In this video, I walkthrough a coding challenge I had during an interview. This is the palindrome coding challenge! I demonstrate how I accomplished this with React JS.

Venmo Me a cup of coffee:
@CodingWithKevin

My Equipment

My Investment Platform

For Crypto
Referral Code: 184801bff

Health:
Рекомендации по теме
Комментарии
Автор

Hey Kev love your coding challenges, I have a small request if you can please zoom in the code while you write it would be
much more readable for viewers.. Thanks again

jyotirmayiswain
Автор

Good stuff kev!! I wish you keep rolling new content, even for more advanced devs!! I'd really appreciate that!

javLG
Автор

you're a cool dude man, keep it up I like the way you tackle the error/bugs haha

zourdy
Автор

On the 16:00 - what if you did unshift instead? You would have a reverse words I believe

aurelianspodarec
Автор

Damn this is mid level? I'm self taught in React and would love a job in dev but can never get interviews, not sure what to do. I've built a palindrome checker, re-built Disney+ website along with Firebase auth to log in and register, no payments for subscription implemented though or video plays of course. I gave up and stopped coding for the past 7 or 8 months as I was pretty burnt out and getting nowhere but I can feel the fire re-lighting - any tips?

gorimor
Автор

Do you ever come across algorithm and data structure kind of technical interview? Do you only apply positions that is frontend or do you go for Software Engineer position as well?

JrkMartin
Автор

Great video. Please increase the font size

ashikpaul
Автор

Hey Mate, appreciate the videos. I have an interview tomorrow and your videos are super helpful. Just a point at around 24-26 minutes you said we need to clear the array, you mean(?) after joining palendrome, we have string instead of the array that's why we don't have push function for string and in the clear function, you assigned empty array again in clearPalendrome.
I hope I understand correctly.

himanshubansal
Автор

Hey kevin nice video bro . But i got eye problems and I am unable to see small text, can you please zoom in next time . Subbed your chanel, keep going

KaranSharma-ewio
Автор

Kinda skimmed the video a bit.. good stuff.. but couldn't u also store string in variable A. Then instead of creating different functions, just create variable B that takes the original variable and then use .split().reverse().join() and compare if original variable A === variable B?? No for loop needed...

ericcapiz
Автор

const [input, setInput] = useState("");
const [display, setDisplay] = useState("");
function inputHandler(e) {
setInput(e.target.value);
}

function isPalindrome() {
let reversedArray =

if (reversedArray === input) {
setDisplay("It's Palindrome !!!");
} else {
setDisplay("No it's Not Palindrome !!!");
}
}
return (
<main>
<input type="text" onChange={(e) => inputHandler(e)} />
<button
<div>{display}</div>
</main>
);

anjalii
Автор

Are you sure this is mid-level? Seems way to easy for that. Shouldnt even an Intern be able to do this?

einfachnurlegendar
visit shbcf.ru