JavaScript string interview questions in Hindi

  Рет қаралды 31,748

Code Step By Step

Code Step By Step

Күн бұрын

Пікірлер: 37
@sagarpatel8853
@sagarpatel8853 2 жыл бұрын
"concat" method for concatinating to strings, trimEnd and trimStart for removing spaces from end and start respectively let str1 = " sagar "; let str2 = "patel" console.log(str1.concat(str2)); console.log(str1); console.log(str1.trim()); console.log(str1.trimEnd()); console.log(str1.trimStart()); thankyou for the informative content.
@punitsheoran3161
@punitsheoran3161 Жыл бұрын
Great work bhayia ji Really thanks
@yashkumarjani
@yashkumarjani Жыл бұрын
Hi Anil Sidhu, you are an amazing teacher. I'm learning many things from your videos... Love you sir ❤
@FuksssJonny
@FuksssJonny Жыл бұрын
Hi my 💕😘
@soumyaranjan6946
@soumyaranjan6946 2 жыл бұрын
Very helpful contact sir. If you can share some frequently asked coding questions & optimal way to solve this basically from array & string, it will help a lot .
@shivanisoni4873
@shivanisoni4873 2 жыл бұрын
Thankyou sir for these videos it's very helpful for clearing all basics concept of javascript
@VishalYadav-qh1oq
@VishalYadav-qh1oq Жыл бұрын
Thanks Sir For making the videos on interview questions also please make video on javaScript array interview questions
@dipikasaindane5558
@dipikasaindane5558 2 жыл бұрын
For left str.trimStart and right trimEnd
@g.pavani5275
@g.pavani5275 2 жыл бұрын
Bro please make a video on interview questions on array as soon as possible it will be a great help ...
@dilipbaghel9535
@dilipbaghel9535 2 жыл бұрын
Very useful video sir I tried all your JS interview question by myself, please upload more videos on different topics also
@codestepbystep
@codestepbystep 2 жыл бұрын
Thank you, I will
@RajYadav-yh7vv
@RajYadav-yh7vv 2 жыл бұрын
make advanced interview questions like how to handle nested objects, arrays or comparison etc
@sukhjindersidhu319
@sukhjindersidhu319 2 жыл бұрын
👍👍very helpful ☺️
@ArjunKiLife19
@ArjunKiLife19 2 жыл бұрын
Sir ese hi array k upper, object k upper, times, math , all loops ka alag alag video banana interview questions ke upper 🙌🙌🙌
@saveenjangra1900
@saveenjangra1900 2 жыл бұрын
Detail study k liye...koi book jo dsa javascript main ho...plz reply
@gulrezeqbal3048
@gulrezeqbal3048 2 жыл бұрын
plz make more videos like that
@lingarajhiroli965
@lingarajhiroli965 2 жыл бұрын
Bro please make video on linked list with functional components
@MohitKumar-nf5jn
@MohitKumar-nf5jn 2 жыл бұрын
Sir please, can you make video of linked list with functional and thank you 🙏
@amirrahman853
@amirrahman853 Жыл бұрын
agar string operations regex ke jage split replace etc operator use karke koi interview pe select kar raha hai toh samajh jao apka personality test kar raha hai coding se ghanta fark nai parta . coding k basis me yeh methods scalable hi nai hai Regex is scalable learn that for string manipulations and for tiny string operations use these methods only. Regex is specifically made for such tasks don't start with built in operators give some time to understand regex and think on that way , as a beginner i also started with built in functions these are too easy to understand and keep you away from using regex but using Regex is ideal to parse strings . hope this will encourage you to try regex
@sahilthummar8237
@sahilthummar8237 2 жыл бұрын
Sir aur video aanewale he???
@codestepbystep
@codestepbystep 2 жыл бұрын
Interview questions aate rhege bhai
@sahilthummar8237
@sahilthummar8237 2 жыл бұрын
@@codestepbystep thank you helpful videos banane ke liye
@g.pavani5275
@g.pavani5275 2 жыл бұрын
@@codestepbystep bro make questions on array as well
@websiteaudit
@websiteaudit 2 жыл бұрын
@@codestepbystep make a video api call using axios and showing data on table and filtering data responsive also
@rakhamajighagare
@rakhamajighagare Жыл бұрын
can we convert String “110a” to integer?
@siddharthsingh913
@siddharthsingh913 Жыл бұрын
Yes, it will be NaN. NaN is a special number.
@saurabhu6458
@saurabhu6458 2 жыл бұрын
Upload all sorting algorithms
@akadeadahot7067
@akadeadahot7067 6 ай бұрын
Itne easy hone ke bavajud maine JavaScript mai code nahi kiye the toh yadd nahi aa rahe the function konse java vale hai n konse JavaScript vale 2 interview gaye mere ussi chakkar maii
@coder-webdev5907
@coder-webdev5907 2 жыл бұрын
Somebody help me in this problem Please write solution in javascript Write a function called do_allocation(number_of_people, number_of_buses) The function should return a list of number of people who can get into the next bus that comes in based on the following logic: Each bus’s capacity is the sum of the capacities of the previous two buses. Once all the people get in, then the buses can continue, but will have 0 people inside it. This is the case when the number of people are less and there are more buses. So after all the people are already boarded, then the remaining buses will have 0 people boarding. The output of the function is an array/list with the same length as number_of_buses. The total of this output array/list should be less than or equal to the number_of_people. The first bus’ capacity can be set to 1 by default. E.g. Def do_allocation(number_of_people, number_of_buses): …. Your code…. Return array[number of people got into first bus, number of people got into second bus, …. , number of people who got into last bus]
@siddharthsingh913
@siddharthsingh913 Жыл бұрын
Looks like fibonacci series to me, but you have to also check the remaining number of people in each iteration. function do_allocation(people, buses){ let result = [ ]; let remainingPeople = people; for(let i = 0; i < buses; i++){ if( remaingingPeople capacity) result.push(capacity); else result.push(remainingPeople); remainingPeople -= capacity; } } return result; }
@AjeetYadav-uz2ey
@AjeetYadav-uz2ey 7 ай бұрын
//? remove extra space from left only console.log(str.trimStart()); //? remove extra space from right only console.log(str.trimEnd());
@sourabhrai8827
@sourabhrai8827 2 жыл бұрын
Good night sir
@hamudxd9497
@hamudxd9497 5 ай бұрын
@AttackModeGaming
@AttackModeGaming 2 жыл бұрын
❤❤❤
@kumawatnaresh3451
@kumawatnaresh3451 2 жыл бұрын
Good night
@rihaanaggarwal1576
@rihaanaggarwal1576 2 жыл бұрын
1.) Concat two strings : str1.concat(str2) 2.) Trim left : str1.trimLeft() 3.) Trim right : str1.trimRight()
@OpinionOfX
@OpinionOfX Жыл бұрын
Ravish kumar official
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
Mom Hack for Cooking Solo with a Little One! 🍳👶
00:15
5-Minute Crafts HOUSE
Рет қаралды 23 МЛН
Strings in Javascript | chai aur #javascript
22:44
Chai aur Code
Рет қаралды 275 М.
A question on Array
9:17
Chai aur Code
Рет қаралды 41 М.
JavaScript String Methods | JavaScript Tutorial in Hindi #14
17:38
CodeWithHarry
Рет қаралды 432 М.
JavaScript interview questions and answers in Hindi | Top 100 output Questions
1:53:25
Array in Javascript | chai aur #javascript
18:55
Chai aur Code
Рет қаралды 278 М.
JavaScript String Methods Tutorial in Hindi / Urdu
14:29
Yahoo Baba
Рет қаралды 252 М.
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН