JavaScript Interview Questions- Machine Coding - Most Asked Question|Reverse Word in String

preview_player
Показать описание
In JavaScript Interview there would be few questions to test your knowledge on built in functions , you must be comfortable with Arrays/Strings functions and in this video, I have talked about same.

Watch the complete video till the end to understand it completely

Checkout my Instagram account to find the latest notes on React, Angular and Javascript.

Instagram handler Name: @nishasingla05

Watch complete video to understand in depth.

Support my channel by liking and sharing my videos so that I can reach to wider audience. Please share it in your network 🙏

►Checkout JavaScript Interview Playlist

►Checkout ES6 Playlist

►Click here to Subscribe the channel:

►Angular Complete Course:

►All important shorts videos:

Connect with Me On Social Media

#nishasingla #javascript #interview
Рекомендации по теме
Комментарии
Автор

Hello, Nisha. Thank you for sharing this. Your javascript playlists have been extremely useful to me. make more javascript and reactjs interview question videos

naganathan
Автор

Thanks for sharing this, thank you so so much🙏

vetrivelpanneerselvam
Автор

Good Approach this javascritp coding. thank you

xmcplxl
Автор

Please make more interview questions JavaScript series 👍💯

cartoonwalasudhir
Автор

I was also given the same question but they told me not to use modern js like ES6. Instead of using nested for loop..

kumar_awadhesh
Автор

Single line of code
'i love javascript'.split('').reverse ().join('')
If you put split and join not space then it return tpircsavaj evol i and i you put space split and join then it will return javascript love i

manojsatwase
Автор

const input = 'i love javascript';

function reverseString(input) {
let output = ''
input = input.split(' ');
for(let i=0;i<input.length;i++) {
let str = '';
let word = input[i]

for(let j=word.length-1;j>=0;j--) {
str += word[j];
}
output += str + " ";
}
return output;
}

ajaykumar-howz
visit shbcf.ru